chore: track audit-runs summary artifacts (md/csv/diff/txt/json/etc)

Snapshot of every non-log artifact under audit-runs/ from audits 003
through 058: findings.md per audit, comparison CSVs, probe diffs,
schema docs, register-dump txts, lr-trace JSONL streams, the saved
canary patch diffs, etc. ~284 files / ~52 MB total.

Excluded (per .gitignore): probe stdout/stderr/log streams (the raw
firehose), guest-memory dumps under audit-026/027/029 (4.5 GB of
.bin files; *.bin pattern added to .gitignore this commit).

Also adds the orphan audit-058-sub825070F0-activation directory that
a subagent accidentally created at project-root instead of
under xenia-rs/audit-runs/; relocated to its proper home.

Purpose: cross-machine continuity. With these summaries committed,
a fresh clone gives the next session the full per-audit context
(findings + tables + cascade predictions) without dependence on
local-only working tree.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
MechaCat02
2026-05-10 21:36:41 +02:00
parent 609f586ed8
commit 8e709b0a24
284 changed files with 677656 additions and 0 deletions

View File

@@ -0,0 +1,76 @@
diff --git a/src/xenia/cpu/backend/x64/x64_emitter.cc b/src/xenia/cpu/backend/x64/x64_emitter.cc
index 5da8f6adc..25181b36d 100644
--- a/src/xenia/cpu/backend/x64/x64_emitter.cc
+++ b/src/xenia/cpu/backend/x64/x64_emitter.cc
@@ -438,6 +438,19 @@ uint64_t TrapDebugBreak(void* raw_context, uint64_t address) {
return 0;
}
+// AUDIT-030: log LR + r3..r6 when `log_lr_on_pc` PC is reached.
+uint64_t TrapLogLR(void* raw_context, uint64_t address) {
+ auto* ctx = reinterpret_cast<ppc::PPCContext_s*>(raw_context);
+ XELOGI(
+ "TRACE-PC-LR pc={:08X} lr={:08X} r3={:08X} r4={:08X} r5={:08X} "
+ "r6={:08X} r31={:08X}",
+ static_cast<uint32_t>(cvars::log_lr_on_pc),
+ static_cast<uint32_t>(ctx->lr), static_cast<uint32_t>(ctx->r[3]),
+ static_cast<uint32_t>(ctx->r[4]), static_cast<uint32_t>(ctx->r[5]),
+ static_cast<uint32_t>(ctx->r[6]), static_cast<uint32_t>(ctx->r[31]));
+ return 0;
+}
+
void X64Emitter::Trap(uint16_t trap_type) {
switch (trap_type) {
case 20:
@@ -454,6 +467,10 @@ void X64Emitter::Trap(uint16_t trap_type) {
case 25:
// ?
break;
+ case 100:
+ // AUDIT-030: log LR + r3..r6 (set via --log_lr_on_pc).
+ CallNative(TrapLogLR, 0);
+ break;
default:
XELOGW("Unknown trap type {}", trap_type);
db(0xCC);
diff --git a/src/xenia/cpu/cpu_flags.cc b/src/xenia/cpu/cpu_flags.cc
index 3ff067e15..d1f02f516 100644
--- a/src/xenia/cpu/cpu_flags.cc
+++ b/src/xenia/cpu/cpu_flags.cc
@@ -57,3 +57,8 @@ DEFINE_bool(break_condition_truncate, true, "truncate value to 32-bits", "CPU");
DEFINE_bool(break_on_debugbreak, true, "int3 on JITed __debugbreak requests.",
"CPU");
+
+// AUDIT-030: log LR + r3..r6 each time the given guest PC executes.
+DEFINE_uint64(log_lr_on_pc, 0,
+ "Log LR + r3..r6 each time the given guest PC is executed.",
+ "CPU");
diff --git a/src/xenia/cpu/cpu_flags.h b/src/xenia/cpu/cpu_flags.h
index 38c4f98ba..ad3d78581 100644
--- a/src/xenia/cpu/cpu_flags.h
+++ b/src/xenia/cpu/cpu_flags.h
@@ -35,4 +35,6 @@ DECLARE_bool(break_condition_truncate);
DECLARE_bool(break_on_debugbreak);
+DECLARE_uint64(log_lr_on_pc);
+
#endif // XENIA_CPU_CPU_FLAGS_H_
diff --git a/src/xenia/cpu/ppc/ppc_hir_builder.cc b/src/xenia/cpu/ppc/ppc_hir_builder.cc
index 42d996cba..5db977ae7 100644
--- a/src/xenia/cpu/ppc/ppc_hir_builder.cc
+++ b/src/xenia/cpu/ppc/ppc_hir_builder.cc
@@ -174,6 +174,12 @@ bool PPCHIRBuilder::Emit(GuestFunction* function, uint32_t flags) {
MaybeBreakOnInstruction(address);
+ // AUDIT-030: log LR + r3..r6 each time `log_lr_on_pc` is reached.
+ if (cvars::log_lr_on_pc != 0 && address == cvars::log_lr_on_pc) {
+ Comment("--log-lr-on-pc target");
+ Trap(100);
+ }
+
InstrData i;
i.address = address;
i.code = code;

View File

@@ -0,0 +1,694 @@
2026-05-10T10:36:18.454987Z  INFO cmd_exec:load_xex_data: xenia_rs: detected disc image, extracting default.xex path=sylpheed.iso path=sylpheed.iso
2026-05-10T10:36:18.456710Z  INFO cmd_exec: xenia_rs: XEX file format compression="normal (LZX)" encryption="normal (AES)" path=sylpheed.iso
2026-05-10T10:36:18.456747Z  INFO cmd_exec: xenia_rs: loading XEX entry=0x824ab748 base=0x82000000 path=sylpheed.iso
2026-05-10T10:36:18.540168Z  INFO cmd_exec:load_image:load_normal_compressed: xenia_xex::loader: LZX decompressed: 3428942 -> 9568256 bytes path=sylpheed.iso bytes=3497984 bytes_in=3485696
2026-05-10T10:36:18.540728Z  INFO cmd_exec:load_image: xenia_xex::loader: image loaded bytes_in=3485696 bytes_out=9568256 ratio=2.745005875440658 elapsed_ms=83.0 path=sylpheed.iso bytes=3497984
2026-05-10T10:36:18.546293Z  INFO cmd_exec: xenia_rs: import thunks mapped thunks=194 path=sylpheed.iso
2026-05-10T10:36:18.546595Z  INFO cmd_exec: xenia_rs: pc probes armed: 1 (0x82172bf8); consumer-snapshots: 0 path=sylpheed.iso
2026-05-10T10:36:18.546920Z  INFO cmd_exec: xenia_rs: starting execution limit=500000000 path=sylpheed.iso
2026-05-10T10:36:18.546968Z  INFO cmd_exec: xenia_rs: gpu: threaded backend — spawning worker thread path=sylpheed.iso
2026-05-10T10:36:18.552902Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x100000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.552932Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x10000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.553076Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=10 flags=0x00000400 result=1 lr=0x824ab598 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.915060Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x1008 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.915121Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x100c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.915448Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x1010 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.915946Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0/" err=File not found: Cache0/ handle=0x1014 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.916019Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=11 flags=0x00000400 result=0 lr=0x824a99a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.916076Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: args v1=0x02080002 v2=0x00000000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.916138Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=2 on hw=1 entry=0x824a93c8 start_ctx=0x828a28f0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.916186Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: tid=2 handle=0x1018 hw=1 callback=0x824a93c8 message=0x828a28f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.916457Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x101c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.916508Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x4acc5000 size=0xff000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.917174Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=3 on hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.917189Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=3 handle=0x1024 hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.918630Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x102c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.918670Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=4 on hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.918691Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=4 handle=0x1030 hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.918767Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1034 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.918910Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/access" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.918967Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.919024Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/recent" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.919642Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="config.ini" size=400 handle=0x1038 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.919811Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=5 on hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.919822Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=5 handle=0x1048 hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.920237Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 400 bytes from "config.ini" @ 0 (handle=0x1038) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.921581Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615e46ee8ca.tmp" host="/tmp/xenia-rs-cache-583246-0/d4ea4615e46ee8ca.tmp" disp=3 size=0 handle=0x1050 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.921682Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 400 bytes to "cache:/d4ea4615e46ee8ca.tmp" @ 0 (handle=0x1050) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.921756Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1054 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.921904Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/access" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.921931Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.921955Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/recent" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.922265Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615" host="/tmp/xenia-rs-cache-583246-0/d4ea4615" disp=2 size=0 handle=0x1058 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.922295Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583246-0/d4ea4615") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.922322Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615e46ee8ca.tmp" host="/tmp/xenia-rs-cache-583246-0/d4ea4615e46ee8ca.tmp" disp=1 size=400 handle=0x105c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.928785Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="dat/files.tbl" err=File not found: dat/files.tbl handle=0x1060 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.933415Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.pak" size=964 handle=0x106c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.933983Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 964 bytes from "dat/tables.pak" @ 0 (handle=0x106c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.934915Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45ce534ffea.tmp" host="/tmp/xenia-rs-cache-583246-0/69d8e45ce534ffea.tmp" disp=3 size=0 handle=0x1074 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.934970Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 964 bytes to "cache:/69d8e45ce534ffea.tmp" @ 0 (handle=0x1074) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.935013Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1078 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.935267Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583246-0/access" disp=5 size=0 handle=0x107c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.935366Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 12 bytes to "cache:/access" @ 0 (handle=0x107c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.935423Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.935516Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583246-0/recent" disp=5 size=0 handle=0x1080 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.935679Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 8 bytes to "cache:/recent" @ 0 (handle=0x1080) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.935879Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c" host="/tmp/xenia-rs-cache-583246-0/69d8e45c" disp=2 size=0 handle=0x1084 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.935902Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583246-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.935926Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45ce534ffea.tmp" host="/tmp/xenia-rs-cache-583246-0/69d8e45ce534ffea.tmp" disp=1 size=964 handle=0x1088 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.937381Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.p00" size=435498 handle=0x1090 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.937998Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 206848 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.938596Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=6 on hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.938654Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=6 handle=0x10a8 hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.939880Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c9355f2f8.tmp" host="/tmp/xenia-rs-cache-583246-0/69d8e45c9355f2f8.tmp" disp=3 size=0 handle=0x10ac path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.939998Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/69d8e45c9355f2f8.tmp" @ 0 (handle=0x10ac) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.940070Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x10b0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.940578Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583246-0/access" disp=5 size=0 handle=0x10b4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.940624Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 24 bytes to "cache:/access" @ 0 (handle=0x10b4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.940686Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.940784Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583246-0/recent" disp=5 size=0 handle=0x10b8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.940825Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 16 bytes to "cache:/recent" @ 0 (handle=0x10b8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.941315Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.941347Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583246-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.941379Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c9355f2f8.tmp" host="/tmp/xenia-rs-cache-583246-0/69d8e45c9355f2f8.tmp" disp=1 size=2048 handle=0x10bc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.949660Z  INFO cmd_exec:run_execution: xenia_kernel::exports: VdSetGraphicsInterruptCallback(0x824be9a0, 0x4244df00) — callback armed path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.949927Z  INFO xenia_gpu::gpu_system: gpu: ring initialized base=0x0adcc000 size_bytes=4096 size_dwords=1024
2026-05-10T10:36:18.949949Z  INFO xenia_gpu::gpu_system: gpu: rptr writeback enabled addr=0x008619fc block_dwords=64
2026-05-10T10:36:18.950036Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=7 on hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false pri=0 mask=0x04 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.950050Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=7 handle=0x10cc hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false aff=0x04 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:19.852486Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=1 fb=0x0b1d8000 width=1280 height=720
2026-05-10T10:36:19.898046Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=8 on hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:19.898162Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=8 handle=0x10d8 hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:19.900862Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/tables.p00" @ 86016 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:19.903956Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3a2c8c185.tmp" host="/tmp/xenia-rs-cache-583246-0/aab216c3a2c8c185.tmp" disp=3 size=0 handle=0x10ec path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:19.904144Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 102400 bytes to "cache:/aab216c3a2c8c185.tmp" @ 0 (handle=0x10ec) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:19.904225Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x10f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:19.904993Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583246-0/access" disp=5 size=0 handle=0x10f4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:19.905095Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 36 bytes to "cache:/access" @ 0 (handle=0x10f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:19.905165Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:19.905280Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583246-0/recent" disp=5 size=0 handle=0x10f8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:19.905317Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 24 bytes to "cache:/recent" @ 0 (handle=0x10f8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:19.905929Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3" host="/tmp/xenia-rs-cache-583246-0/aab216c3" disp=2 size=0 handle=0x10fc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:19.906009Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583246-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:19.906111Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3a2c8c185.tmp" host="/tmp/xenia-rs-cache-583246-0/aab216c3a2c8c185.tmp" disp=1 size=102400 handle=0x1100 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.195330Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.pak" size=114244 handle=0x1108 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.195714Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 114244 bytes from "dat/sound.pak" @ 0 (handle=0x1108) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.200518Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c939a9dcc.tmp" host="/tmp/xenia-rs-cache-583246-0/69d8e45c939a9dcc.tmp" disp=3 size=0 handle=0x1110 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.200992Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 114244 bytes to "cache:/69d8e45c939a9dcc.tmp" @ 0 (handle=0x1110) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.201071Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1114 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.201424Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583246-0/access" disp=5 size=0 handle=0x1118 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.201484Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 48 bytes to "cache:/access" @ 0 (handle=0x1118) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.201544Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.201655Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583246-0/recent" disp=5 size=0 handle=0x111c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.201710Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 32 bytes to "cache:/recent" @ 0 (handle=0x111c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.202030Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.202082Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583246-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.202131Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c939a9dcc.tmp" host="/tmp/xenia-rs-cache-583246-0/69d8e45c939a9dcc.tmp" disp=1 size=114244 handle=0x1120 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.216819Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.p04" size=14903296 handle=0x1128 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.217298Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/sound.p04" @ 5931008 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.218566Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c973a5c0a.tmp" host="/tmp/xenia-rs-cache-583246-0/69d8e45c973a5c0a.tmp" disp=3 size=0 handle=0x1138 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.218673Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/69d8e45c973a5c0a.tmp" @ 0 (handle=0x1138) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.218760Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x113c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.219594Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583246-0/access" disp=5 size=0 handle=0x1140 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.219655Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 60 bytes to "cache:/access" @ 0 (handle=0x1140) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.219725Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.219840Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583246-0/recent" disp=5 size=0 handle=0x1144 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.219895Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 40 bytes to "cache:/recent" @ 0 (handle=0x1144) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.220243Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.220293Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583246-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.220343Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c973a5c0a.tmp" host="/tmp/xenia-rs-cache-583246-0/69d8e45c973a5c0a.tmp" disp=1 size=2048 handle=0x1148 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.271696Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=9 on hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true pri=0 mask=0x10 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.271751Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=9 handle=0x114c hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true aff=0x10 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.271814Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=10 on hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true pri=0 mask=0x20 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.271857Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=10 handle=0x1150 hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true aff=0x20 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.272194Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XAudioRegisterRenderDriverClient: index=0 callback=0x824d6640 arg=0x41e9dd5c wrapped=0x4b9f0000 driver=0x41550000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.336209Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 5933056 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.336462Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6064128 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.336680Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6195200 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.336929Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6326272 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.337181Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6457344 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.337421Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6588416 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.337694Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6719488 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.337927Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6850560 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.338160Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6981632 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.338542Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7112704 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.338796Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7243776 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.339074Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7374848 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.339320Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7505920 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.339564Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7636992 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.339912Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7768064 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.340143Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7899136 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.340412Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8030208 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.340654Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8161280 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.340890Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8292352 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.341187Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8423424 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.341476Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8554496 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.341726Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8685568 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.341971Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8816640 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.342218Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8947712 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.342453Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9078784 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.342694Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9209856 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.343136Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9340928 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.343439Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9472000 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.343730Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9603072 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.343968Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9734144 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.344224Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9865216 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.344465Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9996288 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.344848Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10127360 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.345163Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10258432 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.345398Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10389504 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.345678Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10520576 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.345912Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10651648 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.346149Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10782720 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.346616Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10913792 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.346826Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11044864 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.347029Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11175936 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.347235Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11307008 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.347437Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11438080 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.347839Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11569152 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.348118Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11700224 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.348352Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11831296 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.348625Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11962368 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.348967Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12093440 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.349214Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12224512 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.349504Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12355584 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.349814Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12486656 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.350084Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12617728 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.350321Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12748800 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.350566Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12879872 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.350803Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13010944 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.351091Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13142016 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.351324Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13273088 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.351570Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13404160 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.351899Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13535232 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.352138Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13666304 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.352367Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13797376 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.352603Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13928448 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.352840Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14059520 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.353104Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14190592 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.353335Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14321664 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.353609Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14452736 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.353873Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14583808 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.354141Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14714880 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.354339Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 57344 bytes from "dat/sound.p04" @ 14845952 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.357219Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=11 on hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.357268Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=11 handle=0x1270 hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.357707Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=12 on hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.357747Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=12 handle=0x127c hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.359839Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 77824 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.361150Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c35ee70e0a.tmp" host="/tmp/xenia-rs-cache-583246-0/aab216c35ee70e0a.tmp" disp=3 size=0 handle=0x1294 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.361254Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/aab216c35ee70e0a.tmp" @ 0 (handle=0x1294) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.361338Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1298 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.362196Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583246-0/access" disp=5 size=0 handle=0x129c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.362285Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 72 bytes to "cache:/access" @ 0 (handle=0x129c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.362364Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.362525Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583246-0/recent" disp=5 size=0 handle=0x12a0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.362590Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 48 bytes to "cache:/recent" @ 0 (handle=0x12a0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.363093Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/aab216c3" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.363145Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583246-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.363197Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c35ee70e0a.tmp" host="/tmp/xenia-rs-cache-583246-0/aab216c35ee70e0a.tmp" disp=1 size=2048 handle=0x12a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.364324Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=13 on hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.364366Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=13 handle=0x12a8 hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.364493Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=14 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.364501Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=14 handle=0x12b0 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.364548Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=15 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.364561Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=15 handle=0x12b4 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.370076Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Base.xpr" size=8507404 handle=0x12bc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.372957Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.pak" size=208 handle=0x12c8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.373352Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 208 bytes from "dat/GP_TITLE.pak" @ 0 (handle=0x12c8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.374173Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45cc295ead8.tmp" host="/tmp/xenia-rs-cache-583246-0/69d8e45cc295ead8.tmp" disp=3 size=0 handle=0x12d0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.374258Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 208 bytes to "cache:/69d8e45cc295ead8.tmp" @ 0 (handle=0x12d0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.374333Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x12d4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.374851Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583246-0/access" disp=5 size=0 handle=0x12d8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.374912Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 84 bytes to "cache:/access" @ 0 (handle=0x12d8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.374975Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.375095Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583246-0/recent" disp=5 size=0 handle=0x12dc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.375152Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 56 bytes to "cache:/recent" @ 0 (handle=0x12dc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.375448Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.375497Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583246-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.375549Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45cc295ead8.tmp" host="/tmp/xenia-rs-cache-583246-0/69d8e45cc295ead8.tmp" disp=1 size=208 handle=0x12e0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.376390Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.377339Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.383329Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.p00" size=12283578 handle=0x12f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.394416Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/ptc_pack.xpr" size=20654092 handle=0x12f4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.401113Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 131072 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.401433Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 262144 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.401823Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 393216 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.402151Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 524288 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.402570Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 655360 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.402926Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 786432 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.403272Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 917504 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.403700Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1048576 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.404170Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1179648 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.404494Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1310720 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.404845Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1441792 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.405265Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1572864 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.405695Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1703936 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.412853Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1832960 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.419185Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1964032 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.419440Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2095104 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.419722Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2226176 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.419957Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2357248 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.420187Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2488320 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.420455Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2619392 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.420749Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2750464 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.420983Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2881536 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.421228Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3012608 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.421496Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3143680 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.421796Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3274752 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.422028Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3405824 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.422262Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3536896 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.422494Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3667968 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.422736Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3799040 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.422970Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3930112 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.423200Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4061184 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.423441Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4192256 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.423679Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4323328 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.423919Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4454400 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.424221Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4585472 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.424665Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4716544 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.424878Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4847616 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.425081Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4978688 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.425283Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5109760 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.425482Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5240832 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.425691Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5371904 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.425896Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5502976 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.426098Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5634048 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.426307Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5765120 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.426546Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5896192 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.426752Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6027264 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.426951Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6158336 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.427146Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6289408 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.427347Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6420480 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.427543Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6551552 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.428160Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6682624 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.428396Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6813696 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.428633Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6944768 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.428861Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7075840 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.429161Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7206912 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.429392Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7337984 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.429680Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7469056 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.429906Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7600128 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.430129Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7731200 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.430351Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7862272 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.430623Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7993344 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.430847Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8124416 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.431073Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8255488 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.431375Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 120844 bytes from "hidden/Resource3D/Base.xpr" @ 8386560 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.435764Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 51200 bytes from "dat/GP_TITLE.p00" @ 0 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.438171Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cdba806e.tmp" host="/tmp/xenia-rs-cache-583246-0/87719002cdba806e.tmp" disp=3 size=0 handle=0x1430 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.438325Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 49530 bytes to "cache:/87719002cdba806e.tmp" @ 0 (handle=0x1430) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.438405Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1434 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.438932Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583246-0/access" disp=5 size=0 handle=0x1438 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.438991Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 96 bytes to "cache:/access" @ 0 (handle=0x1438) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.439052Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.439275Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583246-0/recent" disp=5 size=0 handle=0x143c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.439307Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 64 bytes to "cache:/recent" @ 0 (handle=0x143c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.439527Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002" host="/tmp/xenia-rs-cache-583246-0/87719002" disp=2 size=0 handle=0x1440 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.439556Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583246-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.439581Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cdba806e.tmp" host="/tmp/xenia-rs-cache-583246-0/87719002cdba806e.tmp" disp=1 size=49530 handle=0x1444 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.440161Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.440807Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 51200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.443369Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Common.xpr" size=593932 handle=0x1450 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.446688Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/GP_TITLE.p00" @ 182272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.454880Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cec0a96e.tmp" host="/tmp/xenia-rs-cache-583246-0/87719002cec0a96e.tmp" disp=3 size=0 handle=0x145c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.455136Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 232205 bytes to "cache:/87719002cec0a96e.tmp" @ 0 (handle=0x145c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.455221Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1460 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.455801Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583246-0/access" disp=5 size=0 handle=0x1464 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.456060Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 108 bytes to "cache:/access" @ 0 (handle=0x1464) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.456124Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.456274Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583246-0/recent" disp=5 size=0 handle=0x1468 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.456307Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 72 bytes to "cache:/recent" @ 0 (handle=0x1468) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.456493Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.456514Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583246-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.456537Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cec0a96e.tmp" host="/tmp/xenia-rs-cache-583246-0/87719002cec0a96e.tmp" disp=1 size=232205 handle=0x146c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.457032Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 507904 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.461753Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 638976 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.462017Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 770048 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.462264Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 901120 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.462503Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1032192 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.462783Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1163264 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.463024Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1294336 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.463279Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1425408 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.463514Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1556480 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.463757Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1687552 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.463994Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1818624 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.464276Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1949696 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.464514Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2080768 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.464755Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2211840 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.464993Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2342912 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.465241Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2473984 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.465473Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2605056 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.465713Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2736128 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.465951Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2867200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.466895Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2998272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.467177Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 100352 bytes from "dat/GP_TITLE.p00" @ 3129344 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.556432Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a60fcb85.tmp" host="/tmp/xenia-rs-cache-583246-0/87719002a60fcb85.tmp" disp=3 size=0 handle=0x14c4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.559518Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2721352 bytes to "cache:/87719002a60fcb85.tmp" @ 0 (handle=0x14c4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.559630Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x14c8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.560500Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583246-0/access" disp=5 size=0 handle=0x14cc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.560567Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 120 bytes to "cache:/access" @ 0 (handle=0x14cc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.560628Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.560736Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583246-0/recent" disp=5 size=0 handle=0x14d0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.560792Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 80 bytes to "cache:/recent" @ 0 (handle=0x14d0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.561007Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.561051Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583246-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.561099Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a60fcb85.tmp" host="/tmp/xenia-rs-cache-583246-0/87719002a60fcb85.tmp" disp=1 size=2721352 handle=0x14d4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.561782Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "dat/GP_TITLE.p00" @ 468992 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.563948Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002285d8849.tmp" host="/tmp/xenia-rs-cache-583246-0/87719002285d8849.tmp" disp=3 size=0 handle=0x14dc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.564049Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 38706 bytes to "cache:/87719002285d8849.tmp" @ 0 (handle=0x14dc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.564123Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x14e0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.565168Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583246-0/access" disp=5 size=0 handle=0x14e4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.565231Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 132 bytes to "cache:/access" @ 0 (handle=0x14e4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.565294Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.565493Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583246-0/recent" disp=5 size=0 handle=0x14e8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.565555Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 88 bytes to "cache:/recent" @ 0 (handle=0x14e8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.565784Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.565830Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583246-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.565878Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002285d8849.tmp" host="/tmp/xenia-rs-cache-583246-0/87719002285d8849.tmp" disp=1 size=38706 handle=0x14ec path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.566654Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3229696 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.572016Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3360768 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.572320Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3491840 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.572665Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3622912 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.572919Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3753984 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.573159Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3885056 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.573399Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4016128 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.573714Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4147200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.574001Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4278272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.574282Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4409344 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.574504Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 88064 bytes from "dat/GP_TITLE.p00" @ 4540416 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.628125Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a715f485.tmp" host="/tmp/xenia-rs-cache-583246-0/87719002a715f485.tmp" disp=3 size=0 handle=0x151c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.628589Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 1398049 bytes to "cache:/87719002a715f485.tmp" @ 0 (handle=0x151c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.628677Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1520 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.629985Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583246-0/access" disp=5 size=0 handle=0x1524 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.630029Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 144 bytes to "cache:/access" @ 0 (handle=0x1524) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.630076Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.630205Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583246-0/recent" disp=5 size=0 handle=0x1528 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.630244Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 96 bytes to "cache:/recent" @ 0 (handle=0x1528) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.630530Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.630561Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583246-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.630590Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a715f485.tmp" host="/tmp/xenia-rs-cache-583246-0/87719002a715f485.tmp" disp=1 size=1398049 handle=0x152c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.631368Z  INFO cmd_exec:run_execution: xenia_rs: HW thread returned to LR sentinel — marking exited hw_id=1 tid=Some(12) is_main=false cycle=18592099 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.631652Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 116736 bytes from "dat/GP_TITLE.p00" @ 284672 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.631705Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=16 on hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.631717Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=16 handle=0x153c hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.635343Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=17 on hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.635361Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=17 handle=0x154c hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.643594Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cf2a8ccd.tmp" host="/tmp/xenia-rs-cache-583246-0/87719002cf2a8ccd.tmp" disp=3 size=0 handle=0x1558 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.643761Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 115604 bytes to "cache:/87719002cf2a8ccd.tmp" @ 0 (handle=0x1558) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.643863Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x155c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.646087Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583246-0/access" disp=5 size=0 handle=0x1560 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.646133Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 156 bytes to "cache:/access" @ 0 (handle=0x1560) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.646216Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.646379Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=18 on hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.646392Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=18 handle=0x1570 hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.646484Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583246-0/recent" disp=5 size=0 handle=0x1574 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.646537Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 104 bytes to "cache:/recent" @ 0 (handle=0x1574) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.646636Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=19 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.646645Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=19 handle=0x1580 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.646722Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=20 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.646730Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=20 handle=0x1588 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.647541Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.647593Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583246-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.647643Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cf2a8ccd.tmp" host="/tmp/xenia-rs-cache-583246-0/87719002cf2a8ccd.tmp" disp=1 size=115604 handle=0x158c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:20.650066Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 67584 bytes from "dat/GP_TITLE.p00" @ 401408 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.551494Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=2 fb=0x0b1d8000 width=1280 height=720
2026-05-10T10:36:21.558101Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/8771900201a2db9c.tmp" host="/tmp/xenia-rs-cache-583246-0/8771900201a2db9c.tmp" disp=3 size=0 handle=0x1594 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.560275Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 66079 bytes to "cache:/8771900201a2db9c.tmp" @ 0 (handle=0x1594) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.560379Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1598 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.567673Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583246-0/access" disp=5 size=0 handle=0x159c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.567732Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 168 bytes to "cache:/access" @ 0 (handle=0x159c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.567897Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.568272Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583246-0/recent" disp=5 size=0 handle=0x15a0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.568330Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 112 bytes to "cache:/recent" @ 0 (handle=0x15a0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.569284Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.569335Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583246-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.569384Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/8771900201a2db9c.tmp" host="/tmp/xenia-rs-cache-583246-0/8771900201a2db9c.tmp" disp=1 size=66079 handle=0x15a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.572102Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.588801Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 131072 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.589798Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 262144 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.590578Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 393216 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.591576Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 524288 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.592360Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 655360 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.592981Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 786432 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.593907Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 917504 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.594744Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1048576 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.595447Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1179648 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.596499Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1310720 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.597351Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1441792 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.598252Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1572864 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.598889Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1703936 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.599596Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1835008 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.600388Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1966080 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.601242Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2097152 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.601957Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2228224 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.602523Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2359296 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.603085Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2490368 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.603630Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2621440 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.604219Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2752512 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.604798Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2883584 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.605507Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3014656 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.606047Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3145728 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.606589Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3276800 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.607121Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3407872 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.607694Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3538944 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.608238Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3670016 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.608779Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3801088 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.609344Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3932160 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.610129Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4063232 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.610742Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4194304 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.611368Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4325376 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.612044Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4456448 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.612739Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4587520 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.613335Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4718592 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.613940Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4849664 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.614761Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4980736 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.615327Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5111808 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.616215Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5242880 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.616772Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5373952 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.617658Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5505024 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.618416Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5636096 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.619050Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5767168 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.619589Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5898240 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.620121Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6029312 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.620653Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6160384 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.621215Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6291456 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.621876Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6422528 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.626392Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6459392 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.639189Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6590464 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.639801Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6721536 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.640427Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6852608 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.641000Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6983680 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.641608Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7114752 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.642194Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7245824 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.643031Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7376896 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.643729Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7507968 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.644273Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7639040 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.644848Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7770112 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.645407Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7901184 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.646127Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8032256 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.647237Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8163328 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.647836Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8294400 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.648521Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8425472 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.649119Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8556544 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.649687Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8687616 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.650256Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8818688 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.650824Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8949760 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.651394Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9080832 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.652081Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9211904 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.652750Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9342976 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.653489Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9474048 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.654113Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9605120 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.654692Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9736192 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.655338Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9867264 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.655912Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9998336 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.656507Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10129408 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.657081Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10260480 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.657644Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10391552 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.658241Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10522624 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.658873Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10653696 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.659438Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10784768 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.660005Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10915840 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.660636Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11046912 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.661218Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11177984 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.662199Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11309056 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.662759Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11440128 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.663579Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11571200 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.664286Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11702272 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.665156Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11833344 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.665751Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11964416 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.666363Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12095488 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.666995Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12226560 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.667750Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12357632 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.668334Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12488704 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.669021Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12619776 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.669678Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12750848 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.670513Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12881920 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.671180Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13012992 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.671734Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13144064 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.672389Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13275136 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.673019Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13406208 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.674014Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13537280 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.674953Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13668352 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.675528Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13799424 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.676387Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13930496 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.677028Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14061568 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.677694Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14192640 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.678697Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14323712 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.679275Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14454784 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.680306Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14585856 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.681044Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14716928 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.681710Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14848000 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.682364Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14979072 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.683079Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15110144 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.684030Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15241216 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.684867Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15372288 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.685486Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15503360 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.686169Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15634432 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.686854Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15765504 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.687332Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15896576 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.687994Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16027648 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.688588Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16158720 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.689286Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16289792 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.690038Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16420864 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.690765Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16551936 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.691686Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16683008 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.692413Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16814080 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.693099Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16945152 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.693771Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17076224 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.694450Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17207296 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.695321Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17338368 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.696313Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17469440 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.697092Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17600512 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.697882Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17731584 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.698763Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17862656 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.699478Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17993728 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.700049Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18124800 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.700651Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18255872 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.701259Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18386944 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.701896Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18518016 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.702592Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18649088 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.703448Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18780160 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.704304Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18911232 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.705208Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19042304 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.705966Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19173376 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.706958Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19304448 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.707747Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19435520 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.708527Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19566592 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.709320Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19697664 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.710119Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19828736 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.710983Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19959808 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.711698Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20090880 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.712292Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20221952 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.713509Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20353024 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.714793Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20484096 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.715526Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38924 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20615168 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:21.725196Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Common.xpr" @ 0 (handle=0x1450) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:50.984916Z  INFO cmd_exec:run_execution: xenia_rs: reached max instruction count limit=500000000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:50.986974Z  INFO cmd_exec: xenia_rs: in-memory trace log entries=0 path=sylpheed.iso
2026-05-10T10:36:50.987192Z  INFO cmd_exec: xenia_rs: exec complete wall_ms=32532 instructions=500000019 import_calls=5629636 unimplemented=0 path=sylpheed.iso
2026-05-10T10:36:51.000164Z  INFO xenia_rs::observability: metrics summary:
histogram xex.load_image_ms = count=1 sum=83.000 min=83.000 max=83.000 mean=83.000
counter xex.bytes_in = 3485696
counter xex.bytes_out = 9568256
counter kernel.calls{name=RtlImageXexHeaderField} = 2
counter kernel.calls{name=NtAllocateVirtualMemory} = 3
counter kernel.calls{name=KeGetCurrentProcessType} = 3
counter kernel.calls{name=RtlInitializeCriticalSection} = 29
counter kernel.calls{name=RtlEnterCriticalSection} = 889112
counter kernel.calls{name=RtlLeaveCriticalSection} = 889111
counter kernel.calls{name=XexCheckExecutablePrivilege} = 2
counter kernel.calls{name=XGetAVPack} = 1
counter kernel.calls{name=KeTlsAlloc} = 2
counter kernel.calls{name=KeTlsSetValue} = 2
counter kernel.calls{name=KeQuerySystemTime} = 2
counter kernel.calls{name=RtlInitializeCriticalSectionAndSpinCount} = 104
counter kernel.calls{name=MmAllocatePhysicalMemoryEx} = 17
counter kernel.calls{name=NtCreateEvent} = 395
counter kernel.calls{name=KeQueryPerformanceFrequency} = 6
counter kernel.calls{name=NtCreateFile} = 90
counter kernel.calls{name=NtReadFile} = 344
counter kernel.calls{name=NtClose} = 502
counter kernel.calls{name=XeCryptSha} = 1
counter kernel.calls{name=XeKeysConsolePrivateKeySign} = 1
counter kernel.calls{name=NtWriteFile} = 63
counter kernel.calls{name=RtlInitAnsiString} = 173
counter kernel.calls{name=NtOpenFile} = 51
counter kernel.calls{name=NtDeviceIoControlFile} = 2
counter kernel.calls{name=IoDismountVolumeByFileHandle} = 1
counter kernel.calls{name=NtQueryVolumeInformationFile} = 18
counter kernel.calls{name=KeEnterCriticalRegion} = 4
counter kernel.calls{name=XamTaskSchedule} = 1
counter scheduler.spawn.ok = 19
counter kernel.calls{name=XamTaskCloseHandle} = 1
counter kernel.calls{name=KeWaitForSingleObject} = 5
counter kernel.calls{name=StfsCreateDevice} = 1
counter kernel.calls{name=ObCreateSymbolicLink} = 1
counter kernel.calls{name=ExRegisterTitleTerminateNotification} = 3
counter kernel.calls{name=KeSetEvent} = 1
counter kernel.calls{name=KeResetEvent} = 1
counter kernel.calls{name=KeLeaveCriticalRegion} = 4
counter kernel.calls{name=RtlNtStatusToDosError} = 64
counter kernel.calls{name=ExCreateThread} = 18
counter kernel.calls{name=ObReferenceObjectByHandle} = 15
counter kernel.calls{name=KeSetAffinityThread} = 12
counter kernel.calls{name=ObDereferenceObject} = 17
counter kernel.calls{name=XamContentCreateEnumerator} = 1
counter kernel.calls{name=XamEnumerate} = 1
counter kernel.calls{name=NtWaitForSingleObjectEx} = 1489791
counter kernel.calls{name=NtCreateSemaphore} = 10
counter kernel.calls{name=NtQueryDirectoryFile} = 1
counter kernel.calls{name=NtQueryFullAttributesFile} = 16
counter kernel.calls{name=NtWaitForMultipleObjectsEx} = 865500
counter kernel.calls{name=NtDuplicateObject} = 36
counter kernel.calls{name=NtReleaseSemaphore} = 393
counter kernel.calls{name=NtQueryInformationFile} = 377
counter kernel.calls{name=NtSetInformationFile} = 60
counter kernel.calls{name=NtSetEvent} = 3334
counter kernel.calls{name=MmFreePhysicalMemory} = 12
counter kernel.calls{name=XamNotifyCreateListener} = 1
counter kernel.calls{name=VdInitializeEngines} = 2
counter kernel.calls{name=VdShutdownEngines} = 1
counter kernel.calls{name=VdSetGraphicsInterruptCallback} = 1
counter kernel.calls{name=ExGetXConfigSetting} = 3
counter kernel.calls{name=VdSetSystemCommandBufferGpuIdentifierAddress} = 2
counter kernel.calls{name=MmGetPhysicalAddress} = 1
counter kernel.calls{name=VdInitializeRingBuffer} = 1
counter kernel.calls{name=VdEnableRingBufferRPtrWriteBack} = 1
counter kernel.calls{name=KiApcNormalRoutineNop} = 1
counter kernel.calls{name=KeSetBasePriorityThread} = 3
counter kernel.calls{name=VdQueryVideoMode} = 2
counter kernel.calls{name=VdQueryVideoFlags} = 2
counter kernel.calls{name=VdCallGraphicsNotificationRoutines} = 1
counter kernel.calls{name=VdRetrainEDRAMWorker} = 1
counter kernel.calls{name=VdRetrainEDRAM} = 3
counter kernel.calls{name=VdIsHSIOTrainingSucceeded} = 1
counter kernel.calls{name=VdGetSystemCommandBuffer} = 2
counter kernel.calls{name=VdSwap} = 2
counter gpu.interrupt.delivered{source=1} = 2
counter kernel.calls{name=KeAcquireSpinLockAtRaisedIrql} = 28
counter kernel.calls{name=KeReleaseSpinLockFromRaisedIrql} = 28
counter kernel.calls{name=VdGetCurrentDisplayGamma} = 1
counter gpu.interrupt.delivered{source=0} = 3295
counter kernel.calls{name=VdSetDisplayMode} = 1
counter kernel.calls{name=VdGetCurrentDisplayInformation} = 1
counter kernel.calls{name=RtlFillMemoryUlong} = 1
counter kernel.calls{name=VdInitializeScalerCommandBuffer} = 1
counter kernel.calls{name=VdPersistDisplay} = 1
counter kernel.calls{name=NtResumeThread} = 6
counter kernel.calls{name=XGetGameRegion} = 2
counter kernel.calls{name=KeInitializeSemaphore} = 1
counter kernel.calls{name=KeResumeThread} = 2
counter kernel.calls{name=KeRaiseIrqlToDpcLevel} = 33
counter kernel.calls{name=KfLowerIrql} = 26
counter kernel.calls{name=XAudioRegisterRenderDriverClient} = 1
counter kernel.calls{name=ObLookupThreadByThreadId} = 2
counter kernel.calls{name=ObOpenObjectByPointer} = 2
counter kernel.calls{name=XNotifyPositionUI} = 1
counter kernel.calls{name=NtCreateTimer} = 1
counter kernel.calls{name=NtSetTimerEx} = 1
counter kernel.calls{name=XamInputGetCapabilities} = 8
counter kernel.calls{name=XNotifyGetNext} = 1489735
counter kernel.calls{name=XamUserGetSigninState} = 2
counter kernel.calls{name=XamUserGetXUID} = 1
counter kernel.calls{name=XamUserReadProfileSettings} = 2

View File

@@ -0,0 +1,694 @@
2026-05-10T10:34:00.753163Z  INFO cmd_exec:load_xex_data: xenia_rs: detected disc image, extracting default.xex path=sylpheed.iso path=sylpheed.iso
2026-05-10T10:34:00.755300Z  INFO cmd_exec: xenia_rs: XEX file format compression="normal (LZX)" encryption="normal (AES)" path=sylpheed.iso
2026-05-10T10:34:00.755322Z  INFO cmd_exec: xenia_rs: loading XEX entry=0x824ab748 base=0x82000000 path=sylpheed.iso
2026-05-10T10:34:00.838336Z  INFO cmd_exec:load_image:load_normal_compressed: xenia_xex::loader: LZX decompressed: 3428942 -> 9568256 bytes path=sylpheed.iso bytes=3497984 bytes_in=3485696
2026-05-10T10:34:00.838733Z  INFO cmd_exec:load_image: xenia_xex::loader: image loaded bytes_in=3485696 bytes_out=9568256 ratio=2.745005875440658 elapsed_ms=83.0 path=sylpheed.iso bytes=3497984
2026-05-10T10:34:00.843157Z  INFO cmd_exec: xenia_rs: import thunks mapped thunks=194 path=sylpheed.iso
2026-05-10T10:34:00.843473Z  INFO cmd_exec: xenia_rs: pc probes armed: 1 (0x8228f858); consumer-snapshots: 0 path=sylpheed.iso
2026-05-10T10:34:00.843742Z  INFO cmd_exec: xenia_rs: starting execution limit=500000000 path=sylpheed.iso
2026-05-10T10:34:00.843754Z  INFO cmd_exec: xenia_rs: gpu: threaded backend — spawning worker thread path=sylpheed.iso
2026-05-10T10:34:00.849586Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x100000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:00.849613Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x10000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:00.849736Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=10 flags=0x00000400 result=1 lr=0x824ab598 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.216317Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x1008 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.216437Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x100c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.216933Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x1010 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.217699Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0/" err=File not found: Cache0/ handle=0x1014 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.217745Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=11 flags=0x00000400 result=0 lr=0x824a99a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.217795Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: args v1=0x02080002 v2=0x00000000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.217850Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=2 on hw=1 entry=0x824a93c8 start_ctx=0x828a28f0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.217886Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: tid=2 handle=0x1018 hw=1 callback=0x824a93c8 message=0x828a28f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.218076Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x101c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.218115Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x4acc5000 size=0xff000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.218307Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=3 on hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.218343Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=3 handle=0x1024 hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.219325Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x102c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.219381Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=4 on hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.219411Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=4 handle=0x1030 hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.219481Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1034 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.219635Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/access" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.219790Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.219846Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/recent" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.220410Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="config.ini" size=400 handle=0x1038 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.221529Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=5 on hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.221581Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=5 handle=0x1048 hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.221953Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 400 bytes from "config.ini" @ 0 (handle=0x1038) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.223134Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615e46ee8ca.tmp" host="/tmp/xenia-rs-cache-582179-0/d4ea4615e46ee8ca.tmp" disp=3 size=0 handle=0x1050 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.223220Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 400 bytes to "cache:/d4ea4615e46ee8ca.tmp" @ 0 (handle=0x1050) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.223282Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1054 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.223444Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/access" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.223478Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.223531Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/recent" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.223840Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615" host="/tmp/xenia-rs-cache-582179-0/d4ea4615" disp=2 size=0 handle=0x1058 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.223878Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582179-0/d4ea4615") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.223939Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615e46ee8ca.tmp" host="/tmp/xenia-rs-cache-582179-0/d4ea4615e46ee8ca.tmp" disp=1 size=400 handle=0x105c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.230566Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="dat/files.tbl" err=File not found: dat/files.tbl handle=0x1060 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.234454Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.pak" size=964 handle=0x106c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.234950Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 964 bytes from "dat/tables.pak" @ 0 (handle=0x106c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.235589Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45ce534ffea.tmp" host="/tmp/xenia-rs-cache-582179-0/69d8e45ce534ffea.tmp" disp=3 size=0 handle=0x1074 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.235669Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 964 bytes to "cache:/69d8e45ce534ffea.tmp" @ 0 (handle=0x1074) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.235742Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1078 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.236027Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582179-0/access" disp=5 size=0 handle=0x107c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.236086Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 12 bytes to "cache:/access" @ 0 (handle=0x107c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.236149Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.236262Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582179-0/recent" disp=5 size=0 handle=0x1080 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.236303Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 8 bytes to "cache:/recent" @ 0 (handle=0x1080) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.236614Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c" host="/tmp/xenia-rs-cache-582179-0/69d8e45c" disp=2 size=0 handle=0x1084 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.236642Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582179-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.236670Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45ce534ffea.tmp" host="/tmp/xenia-rs-cache-582179-0/69d8e45ce534ffea.tmp" disp=1 size=964 handle=0x1088 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.238782Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.p00" size=435498 handle=0x1090 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.239346Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 206848 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.239952Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=6 on hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.239970Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=6 handle=0x10a8 hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.241120Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c9355f2f8.tmp" host="/tmp/xenia-rs-cache-582179-0/69d8e45c9355f2f8.tmp" disp=3 size=0 handle=0x10ac path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.241202Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/69d8e45c9355f2f8.tmp" @ 0 (handle=0x10ac) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.241268Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x10b0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.241859Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582179-0/access" disp=5 size=0 handle=0x10b4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.241902Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 24 bytes to "cache:/access" @ 0 (handle=0x10b4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.241962Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.242059Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582179-0/recent" disp=5 size=0 handle=0x10b8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.242094Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 16 bytes to "cache:/recent" @ 0 (handle=0x10b8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.242489Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.242534Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582179-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.242569Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c9355f2f8.tmp" host="/tmp/xenia-rs-cache-582179-0/69d8e45c9355f2f8.tmp" disp=1 size=2048 handle=0x10bc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.249771Z  INFO cmd_exec:run_execution: xenia_kernel::exports: VdSetGraphicsInterruptCallback(0x824be9a0, 0x4244df00) — callback armed path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.249944Z  INFO xenia_gpu::gpu_system: gpu: ring initialized base=0x0adcc000 size_bytes=4096 size_dwords=1024
2026-05-10T10:34:01.250005Z  INFO xenia_gpu::gpu_system: gpu: rptr writeback enabled addr=0x008619fc block_dwords=64
2026-05-10T10:34:01.250105Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=7 on hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false pri=0 mask=0x04 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:01.250183Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=7 handle=0x10cc hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false aff=0x04 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.153071Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=1 fb=0x0b1d8000 width=1280 height=720
2026-05-10T10:34:02.189960Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=8 on hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.189981Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=8 handle=0x10d8 hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.192187Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/tables.p00" @ 86016 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.193467Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3a2c8c185.tmp" host="/tmp/xenia-rs-cache-582179-0/aab216c3a2c8c185.tmp" disp=3 size=0 handle=0x10ec path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.193670Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 102400 bytes to "cache:/aab216c3a2c8c185.tmp" @ 0 (handle=0x10ec) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.193733Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x10f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.194789Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582179-0/access" disp=5 size=0 handle=0x10f4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.194857Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 36 bytes to "cache:/access" @ 0 (handle=0x10f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.194935Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.195059Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582179-0/recent" disp=5 size=0 handle=0x10f8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.195119Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 24 bytes to "cache:/recent" @ 0 (handle=0x10f8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.195535Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3" host="/tmp/xenia-rs-cache-582179-0/aab216c3" disp=2 size=0 handle=0x10fc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.195595Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582179-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.195652Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3a2c8c185.tmp" host="/tmp/xenia-rs-cache-582179-0/aab216c3a2c8c185.tmp" disp=1 size=102400 handle=0x1100 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.488567Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.pak" size=114244 handle=0x1108 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.489024Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 114244 bytes from "dat/sound.pak" @ 0 (handle=0x1108) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.495483Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c939a9dcc.tmp" host="/tmp/xenia-rs-cache-582179-0/69d8e45c939a9dcc.tmp" disp=3 size=0 handle=0x1110 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.495721Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 114244 bytes to "cache:/69d8e45c939a9dcc.tmp" @ 0 (handle=0x1110) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.495835Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1114 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.496489Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582179-0/access" disp=5 size=0 handle=0x1118 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.496533Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 48 bytes to "cache:/access" @ 0 (handle=0x1118) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.496620Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.496743Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582179-0/recent" disp=5 size=0 handle=0x111c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.496781Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 32 bytes to "cache:/recent" @ 0 (handle=0x111c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.497078Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.497111Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582179-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.497139Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c939a9dcc.tmp" host="/tmp/xenia-rs-cache-582179-0/69d8e45c939a9dcc.tmp" disp=1 size=114244 handle=0x1120 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.514135Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.p04" size=14903296 handle=0x1128 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.514703Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/sound.p04" @ 5931008 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.516575Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c973a5c0a.tmp" host="/tmp/xenia-rs-cache-582179-0/69d8e45c973a5c0a.tmp" disp=3 size=0 handle=0x1138 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.516669Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/69d8e45c973a5c0a.tmp" @ 0 (handle=0x1138) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.516748Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x113c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.517581Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582179-0/access" disp=5 size=0 handle=0x1140 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.517621Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 60 bytes to "cache:/access" @ 0 (handle=0x1140) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.517685Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.517812Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582179-0/recent" disp=5 size=0 handle=0x1144 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.517855Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 40 bytes to "cache:/recent" @ 0 (handle=0x1144) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.518390Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.518462Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582179-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.518521Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c973a5c0a.tmp" host="/tmp/xenia-rs-cache-582179-0/69d8e45c973a5c0a.tmp" disp=1 size=2048 handle=0x1148 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.583794Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=9 on hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true pri=0 mask=0x10 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.583816Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=9 handle=0x114c hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true aff=0x10 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.583852Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=10 on hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true pri=0 mask=0x20 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.583859Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=10 handle=0x1150 hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true aff=0x20 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.584222Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XAudioRegisterRenderDriverClient: index=0 callback=0x824d6640 arg=0x41e9dd5c wrapped=0x4b9f0000 driver=0x41550000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.664292Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 5933056 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.664606Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6064128 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.664823Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6195200 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.665027Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6326272 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.665231Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6457344 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.665444Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6588416 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.665653Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6719488 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.665861Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6850560 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.666063Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6981632 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.666262Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7112704 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.666534Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7243776 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.666774Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7374848 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.667047Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7505920 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.667381Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7636992 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.667671Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7768064 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.667886Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7899136 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.668080Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8030208 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.668388Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8161280 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.668741Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8292352 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.669168Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8423424 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.669438Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8554496 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.669719Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8685568 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.669993Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8816640 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.670247Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8947712 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.670482Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9078784 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.670715Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9209856 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.670949Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9340928 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.671234Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9472000 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.671441Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9603072 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.671654Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9734144 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.671891Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9865216 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.672137Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9996288 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.672404Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10127360 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.672641Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10258432 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.672914Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10389504 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.673263Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10520576 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.673473Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10651648 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.673710Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10782720 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.674033Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10913792 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.674322Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11044864 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.674560Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11175936 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.674792Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11307008 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.675021Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11438080 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.675258Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11569152 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.675496Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11700224 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.675734Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11831296 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.675966Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11962368 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.676196Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12093440 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.676431Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12224512 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.676696Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12355584 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.677008Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12486656 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.677239Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12617728 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.677482Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12748800 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.677722Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12879872 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.677958Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13010944 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.678187Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13142016 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.678458Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13273088 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.678700Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13404160 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.678937Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13535232 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.679235Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13666304 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.679503Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13797376 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.679741Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13928448 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.679971Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14059520 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.680201Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14190592 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.680618Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14321664 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.680825Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14452736 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.681029Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14583808 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.681234Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14714880 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.681406Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 57344 bytes from "dat/sound.p04" @ 14845952 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.684383Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=11 on hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.684431Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=11 handle=0x1270 hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.685437Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=12 on hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.685455Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=12 handle=0x127c hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.687695Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 77824 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.688868Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c35ee70e0a.tmp" host="/tmp/xenia-rs-cache-582179-0/aab216c35ee70e0a.tmp" disp=3 size=0 handle=0x1294 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.688944Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/aab216c35ee70e0a.tmp" @ 0 (handle=0x1294) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.689004Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1298 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.689748Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582179-0/access" disp=5 size=0 handle=0x129c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.689810Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 72 bytes to "cache:/access" @ 0 (handle=0x129c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.689885Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.690031Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582179-0/recent" disp=5 size=0 handle=0x12a0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.690127Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 48 bytes to "cache:/recent" @ 0 (handle=0x12a0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.690583Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/aab216c3" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.690639Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582179-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.690692Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c35ee70e0a.tmp" host="/tmp/xenia-rs-cache-582179-0/aab216c35ee70e0a.tmp" disp=1 size=2048 handle=0x12a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.691765Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=13 on hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.691805Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=13 handle=0x12a8 hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.691991Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=14 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.692025Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=14 handle=0x12b0 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.692098Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=15 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.692133Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=15 handle=0x12b4 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.697220Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Base.xpr" size=8507404 handle=0x12bc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.699622Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.pak" size=208 handle=0x12c8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.700165Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 208 bytes from "dat/GP_TITLE.pak" @ 0 (handle=0x12c8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.700952Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45cc295ead8.tmp" host="/tmp/xenia-rs-cache-582179-0/69d8e45cc295ead8.tmp" disp=3 size=0 handle=0x12d0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.701008Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 208 bytes to "cache:/69d8e45cc295ead8.tmp" @ 0 (handle=0x12d0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.701055Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x12d4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.701501Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582179-0/access" disp=5 size=0 handle=0x12d8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.701566Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 84 bytes to "cache:/access" @ 0 (handle=0x12d8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.701627Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.701722Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582179-0/recent" disp=5 size=0 handle=0x12dc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.701773Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 56 bytes to "cache:/recent" @ 0 (handle=0x12dc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.701982Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.702030Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582179-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.702079Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45cc295ead8.tmp" host="/tmp/xenia-rs-cache-582179-0/69d8e45cc295ead8.tmp" disp=1 size=208 handle=0x12e0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.703067Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.703948Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.709584Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.p00" size=12283578 handle=0x12f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.719446Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/ptc_pack.xpr" size=20654092 handle=0x12f4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.725330Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 131072 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.725674Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 262144 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.726055Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 393216 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.726381Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 524288 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.726749Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 655360 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.727114Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 786432 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.727463Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 917504 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.727928Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1048576 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.728272Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1179648 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.728760Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1310720 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.729083Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1441792 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.729417Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1572864 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.729818Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1703936 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.736564Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1832960 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.742404Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1964032 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.742654Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2095104 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.742933Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2226176 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.743345Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2357248 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.743579Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2488320 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.743878Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2619392 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.744106Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2750464 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.744337Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2881536 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.744620Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3012608 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.745010Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3143680 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.745237Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3274752 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.745466Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3405824 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.745699Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3536896 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.745926Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3667968 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.746286Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3799040 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.746512Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3930112 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.746748Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4061184 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.746999Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4192256 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.747233Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4323328 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.747490Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4454400 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.747765Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4585472 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.748038Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4716544 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.748264Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4847616 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.748490Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4978688 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.748722Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5109760 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.748949Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5240832 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.749176Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5371904 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.749400Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5502976 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.749633Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5634048 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.749862Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5765120 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.750087Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5896192 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.750313Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6027264 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.750539Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6158336 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.750768Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6289408 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.751000Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6420480 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.751225Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6551552 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.751647Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6682624 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.751890Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6813696 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.752119Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6944768 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.752346Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7075840 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.752583Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7206912 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.752810Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7337984 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.753070Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7469056 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.753272Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7600128 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.753471Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7731200 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.753674Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7862272 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.753879Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7993344 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.754085Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8124416 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.754285Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8255488 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.754524Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 120844 bytes from "hidden/Resource3D/Base.xpr" @ 8386560 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.758678Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 51200 bytes from "dat/GP_TITLE.p00" @ 0 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.761344Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cdba806e.tmp" host="/tmp/xenia-rs-cache-582179-0/87719002cdba806e.tmp" disp=3 size=0 handle=0x1430 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.761485Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 49530 bytes to "cache:/87719002cdba806e.tmp" @ 0 (handle=0x1430) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.761579Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1434 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.762103Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582179-0/access" disp=5 size=0 handle=0x1438 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.762133Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 96 bytes to "cache:/access" @ 0 (handle=0x1438) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.762166Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.762251Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582179-0/recent" disp=5 size=0 handle=0x143c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.762280Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 64 bytes to "cache:/recent" @ 0 (handle=0x143c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.762487Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002" host="/tmp/xenia-rs-cache-582179-0/87719002" disp=2 size=0 handle=0x1440 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.762510Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582179-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.762533Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cdba806e.tmp" host="/tmp/xenia-rs-cache-582179-0/87719002cdba806e.tmp" disp=1 size=49530 handle=0x1444 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.763077Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.763692Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 51200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.766724Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Common.xpr" size=593932 handle=0x1450 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.770414Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/GP_TITLE.p00" @ 182272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.779570Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cec0a96e.tmp" host="/tmp/xenia-rs-cache-582179-0/87719002cec0a96e.tmp" disp=3 size=0 handle=0x145c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.779837Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 232205 bytes to "cache:/87719002cec0a96e.tmp" @ 0 (handle=0x145c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.779928Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1460 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.780498Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582179-0/access" disp=5 size=0 handle=0x1464 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.780532Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 108 bytes to "cache:/access" @ 0 (handle=0x1464) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.780575Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.780658Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582179-0/recent" disp=5 size=0 handle=0x1468 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.780685Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 72 bytes to "cache:/recent" @ 0 (handle=0x1468) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.780872Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.780893Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582179-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.780915Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cec0a96e.tmp" host="/tmp/xenia-rs-cache-582179-0/87719002cec0a96e.tmp" disp=1 size=232205 handle=0x146c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.781411Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 507904 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.787041Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 638976 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.787290Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 770048 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.787546Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 901120 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.787800Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1032192 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.788061Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1163264 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.788278Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1294336 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.788517Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1425408 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.788792Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1556480 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.789064Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1687552 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.789290Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1818624 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.789532Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1949696 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.790122Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2080768 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.790487Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2211840 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.790808Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2342912 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.791138Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2473984 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.791488Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2605056 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.791760Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2736128 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.792143Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2867200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.792400Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2998272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.792725Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 100352 bytes from "dat/GP_TITLE.p00" @ 3129344 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.911477Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a60fcb85.tmp" host="/tmp/xenia-rs-cache-582179-0/87719002a60fcb85.tmp" disp=3 size=0 handle=0x14c4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.913644Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2721352 bytes to "cache:/87719002a60fcb85.tmp" @ 0 (handle=0x14c4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.913805Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x14c8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.914665Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582179-0/access" disp=5 size=0 handle=0x14cc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.914736Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 120 bytes to "cache:/access" @ 0 (handle=0x14cc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.914828Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.914959Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582179-0/recent" disp=5 size=0 handle=0x14d0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.915026Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 80 bytes to "cache:/recent" @ 0 (handle=0x14d0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.915253Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.915334Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582179-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.915394Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a60fcb85.tmp" host="/tmp/xenia-rs-cache-582179-0/87719002a60fcb85.tmp" disp=1 size=2721352 handle=0x14d4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.916118Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "dat/GP_TITLE.p00" @ 468992 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.918872Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002285d8849.tmp" host="/tmp/xenia-rs-cache-582179-0/87719002285d8849.tmp" disp=3 size=0 handle=0x14dc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.918986Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 38706 bytes to "cache:/87719002285d8849.tmp" @ 0 (handle=0x14dc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.919101Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x14e0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.919769Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582179-0/access" disp=5 size=0 handle=0x14e4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.919836Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 132 bytes to "cache:/access" @ 0 (handle=0x14e4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.919908Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.920023Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582179-0/recent" disp=5 size=0 handle=0x14e8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.920108Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 88 bytes to "cache:/recent" @ 0 (handle=0x14e8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.920358Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.920417Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582179-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.920475Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002285d8849.tmp" host="/tmp/xenia-rs-cache-582179-0/87719002285d8849.tmp" disp=1 size=38706 handle=0x14ec path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.921173Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3229696 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.926783Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3360768 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.927062Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3491840 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.927309Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3622912 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.927916Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3753984 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.928480Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3885056 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.931834Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4016128 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.932220Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4147200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.932512Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4278272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.932837Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4409344 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.933114Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 88064 bytes from "dat/GP_TITLE.p00" @ 4540416 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.990792Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a715f485.tmp" host="/tmp/xenia-rs-cache-582179-0/87719002a715f485.tmp" disp=3 size=0 handle=0x151c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.992250Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 1398049 bytes to "cache:/87719002a715f485.tmp" @ 0 (handle=0x151c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.992332Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1520 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.993036Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582179-0/access" disp=5 size=0 handle=0x1524 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.993067Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 144 bytes to "cache:/access" @ 0 (handle=0x1524) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.993101Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.993182Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582179-0/recent" disp=5 size=0 handle=0x1528 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.993208Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 96 bytes to "cache:/recent" @ 0 (handle=0x1528) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.994050Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.994088Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582179-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.994126Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a715f485.tmp" host="/tmp/xenia-rs-cache-582179-0/87719002a715f485.tmp" disp=1 size=1398049 handle=0x152c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.995146Z  INFO cmd_exec:run_execution: xenia_rs: HW thread returned to LR sentinel — marking exited hw_id=1 tid=Some(12) is_main=false cycle=18592099 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.995545Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 116736 bytes from "dat/GP_TITLE.p00" @ 284672 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.995601Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=16 on hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.995614Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=16 handle=0x153c hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.998999Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=17 on hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:02.999046Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=17 handle=0x154c hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.005996Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cf2a8ccd.tmp" host="/tmp/xenia-rs-cache-582179-0/87719002cf2a8ccd.tmp" disp=3 size=0 handle=0x1558 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.006145Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 115604 bytes to "cache:/87719002cf2a8ccd.tmp" @ 0 (handle=0x1558) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.006230Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x155c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.008997Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582179-0/access" disp=5 size=0 handle=0x1560 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.009055Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 156 bytes to "cache:/access" @ 0 (handle=0x1560) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.009159Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.009386Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=18 on hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.009403Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=18 handle=0x1570 hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.009509Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582179-0/recent" disp=5 size=0 handle=0x1574 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.009596Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 104 bytes to "cache:/recent" @ 0 (handle=0x1574) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.009671Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=19 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.009679Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=19 handle=0x1580 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.009764Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=20 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.009774Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=20 handle=0x1588 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.010221Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.010249Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582179-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.010311Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cf2a8ccd.tmp" host="/tmp/xenia-rs-cache-582179-0/87719002cf2a8ccd.tmp" disp=1 size=115604 handle=0x158c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.012827Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 67584 bytes from "dat/GP_TITLE.p00" @ 401408 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.913422Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=2 fb=0x0b1d8000 width=1280 height=720
2026-05-10T10:34:03.923760Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/8771900201a2db9c.tmp" host="/tmp/xenia-rs-cache-582179-0/8771900201a2db9c.tmp" disp=3 size=0 handle=0x1594 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.923929Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 66079 bytes to "cache:/8771900201a2db9c.tmp" @ 0 (handle=0x1594) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.924024Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1598 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.927331Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582179-0/access" disp=5 size=0 handle=0x159c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.927415Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 168 bytes to "cache:/access" @ 0 (handle=0x159c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.927532Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.927788Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582179-0/recent" disp=5 size=0 handle=0x15a0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.927831Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 112 bytes to "cache:/recent" @ 0 (handle=0x15a0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.928540Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.928748Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582179-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.928830Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/8771900201a2db9c.tmp" host="/tmp/xenia-rs-cache-582179-0/8771900201a2db9c.tmp" disp=1 size=66079 handle=0x15a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.931209Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.945613Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 131072 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.946442Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 262144 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.947536Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 393216 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.948340Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 524288 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.949193Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 655360 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.949825Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 786432 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.950387Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 917504 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.951020Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1048576 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.951588Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1179648 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.952220Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1310720 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.952791Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1441792 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.953388Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1572864 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.953956Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1703936 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.955366Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1835008 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.955937Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1966080 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.957807Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2097152 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.959266Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2228224 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.959841Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2359296 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.960787Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2490368 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.961394Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2621440 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.962058Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2752512 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.962777Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2883584 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.963518Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3014656 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.964841Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3145728 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.965528Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3276800 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.966207Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3407872 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.967225Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3538944 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.968353Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3670016 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.969404Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3801088 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.970054Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3932160 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.970916Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4063232 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.971816Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4194304 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.972578Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4325376 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.973936Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4456448 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.974676Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4587520 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.975376Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4718592 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.976231Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4849664 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.977077Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4980736 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.977978Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5111808 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.978782Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5242880 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.979477Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5373952 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.980304Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5505024 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.981149Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5636096 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.981869Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5767168 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.982578Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5898240 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.983438Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6029312 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.984176Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6160384 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.985042Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6291456 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.986066Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6422528 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:03.992769Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6459392 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.006994Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6590464 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.007710Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6721536 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.008525Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6852608 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.009299Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6983680 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.010023Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7114752 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.010663Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7245824 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.011228Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7376896 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.011900Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7507968 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.012510Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7639040 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.013265Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7770112 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.013871Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7901184 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.014432Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8032256 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.015098Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8163328 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.015732Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8294400 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.016482Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8425472 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.017709Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8556544 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.018312Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8687616 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.019151Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8818688 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.019914Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8949760 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.020504Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9080832 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.021147Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9211904 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.021775Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9342976 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.022847Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9474048 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.024546Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9605120 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.025103Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9736192 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.025650Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9867264 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.026556Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9998336 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.027232Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10129408 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.028413Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10260480 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.028962Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10391552 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.029472Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10522624 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.030051Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10653696 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.030602Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10784768 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.031182Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10915840 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.031747Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11046912 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.032322Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11177984 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.032929Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11309056 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.033488Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11440128 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.034085Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11571200 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.034621Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11702272 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.035172Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11833344 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.036385Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11964416 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.036969Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12095488 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.037520Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12226560 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.038248Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12357632 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.038787Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12488704 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.039324Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12619776 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.040146Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12750848 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.040818Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12881920 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.041343Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13012992 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.042107Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13144064 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.042854Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13275136 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.043641Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13406208 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.044353Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13537280 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.045017Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13668352 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.045979Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13799424 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.046639Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13930496 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.047260Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14061568 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.048023Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14192640 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.048813Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14323712 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.049442Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14454784 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.050097Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14585856 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.051297Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14716928 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.052290Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14848000 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.053016Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14979072 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.053667Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15110144 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.054338Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15241216 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.054968Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15372288 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.055679Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15503360 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.056355Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15634432 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.057047Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15765504 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.058427Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15896576 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.059105Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16027648 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.060195Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16158720 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.060892Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16289792 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.062128Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16420864 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.062890Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16551936 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.063875Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16683008 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.064577Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16814080 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.065461Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16945152 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.066502Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17076224 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.067236Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17207296 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.067888Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17338368 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.068830Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17469440 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.069439Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17600512 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.070124Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17731584 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.070785Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17862656 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.071341Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17993728 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.071987Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18124800 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.072688Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18255872 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.073318Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18386944 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.074889Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18518016 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.076368Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18649088 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.077158Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18780160 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.078097Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18911232 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.078940Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19042304 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.080062Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19173376 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.080834Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19304448 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.081660Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19435520 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.082444Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19566592 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.083405Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19697664 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.084207Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19828736 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.085514Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19959808 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.086382Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20090880 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.087314Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20221952 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.088048Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20353024 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.088786Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20484096 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.089679Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38924 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20615168 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:04.099176Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Common.xpr" @ 0 (handle=0x1450) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:33.975247Z  INFO cmd_exec:run_execution: xenia_rs: reached max instruction count limit=500000000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:33.977919Z  INFO cmd_exec: xenia_rs: in-memory trace log entries=0 path=sylpheed.iso
2026-05-10T10:34:33.978207Z  INFO cmd_exec: xenia_rs: exec complete wall_ms=33225 instructions=500000019 import_calls=5629636 unimplemented=0 path=sylpheed.iso
2026-05-10T10:34:33.988813Z  INFO xenia_rs::observability: metrics summary:
histogram xex.load_image_ms = count=1 sum=83.000 min=83.000 max=83.000 mean=83.000
counter xex.bytes_in = 3485696
counter xex.bytes_out = 9568256
counter kernel.calls{name=RtlImageXexHeaderField} = 2
counter kernel.calls{name=NtAllocateVirtualMemory} = 3
counter kernel.calls{name=KeGetCurrentProcessType} = 3
counter kernel.calls{name=RtlInitializeCriticalSection} = 29
counter kernel.calls{name=RtlEnterCriticalSection} = 889112
counter kernel.calls{name=RtlLeaveCriticalSection} = 889111
counter kernel.calls{name=XexCheckExecutablePrivilege} = 2
counter kernel.calls{name=XGetAVPack} = 1
counter kernel.calls{name=KeTlsAlloc} = 2
counter kernel.calls{name=KeTlsSetValue} = 2
counter kernel.calls{name=KeQuerySystemTime} = 2
counter kernel.calls{name=RtlInitializeCriticalSectionAndSpinCount} = 104
counter kernel.calls{name=MmAllocatePhysicalMemoryEx} = 17
counter kernel.calls{name=NtCreateEvent} = 395
counter kernel.calls{name=KeQueryPerformanceFrequency} = 6
counter kernel.calls{name=NtCreateFile} = 90
counter kernel.calls{name=NtReadFile} = 344
counter kernel.calls{name=NtClose} = 502
counter kernel.calls{name=XeCryptSha} = 1
counter kernel.calls{name=XeKeysConsolePrivateKeySign} = 1
counter kernel.calls{name=NtWriteFile} = 63
counter kernel.calls{name=RtlInitAnsiString} = 173
counter kernel.calls{name=NtOpenFile} = 51
counter kernel.calls{name=NtDeviceIoControlFile} = 2
counter kernel.calls{name=IoDismountVolumeByFileHandle} = 1
counter kernel.calls{name=NtQueryVolumeInformationFile} = 18
counter kernel.calls{name=KeEnterCriticalRegion} = 4
counter kernel.calls{name=XamTaskSchedule} = 1
counter scheduler.spawn.ok = 19
counter kernel.calls{name=XamTaskCloseHandle} = 1
counter kernel.calls{name=KeWaitForSingleObject} = 5
counter kernel.calls{name=StfsCreateDevice} = 1
counter kernel.calls{name=ObCreateSymbolicLink} = 1
counter kernel.calls{name=ExRegisterTitleTerminateNotification} = 3
counter kernel.calls{name=KeSetEvent} = 1
counter kernel.calls{name=KeResetEvent} = 1
counter kernel.calls{name=KeLeaveCriticalRegion} = 4
counter kernel.calls{name=RtlNtStatusToDosError} = 64
counter kernel.calls{name=ExCreateThread} = 18
counter kernel.calls{name=ObReferenceObjectByHandle} = 15
counter kernel.calls{name=KeSetAffinityThread} = 12
counter kernel.calls{name=ObDereferenceObject} = 17
counter kernel.calls{name=XamContentCreateEnumerator} = 1
counter kernel.calls{name=XamEnumerate} = 1
counter kernel.calls{name=NtWaitForSingleObjectEx} = 1489791
counter kernel.calls{name=NtCreateSemaphore} = 10
counter kernel.calls{name=NtQueryDirectoryFile} = 1
counter kernel.calls{name=NtQueryFullAttributesFile} = 16
counter kernel.calls{name=NtWaitForMultipleObjectsEx} = 865500
counter kernel.calls{name=NtDuplicateObject} = 36
counter kernel.calls{name=NtReleaseSemaphore} = 393
counter kernel.calls{name=NtQueryInformationFile} = 377
counter kernel.calls{name=NtSetInformationFile} = 60
counter kernel.calls{name=NtSetEvent} = 3334
counter kernel.calls{name=MmFreePhysicalMemory} = 12
counter kernel.calls{name=XamNotifyCreateListener} = 1
counter kernel.calls{name=VdInitializeEngines} = 2
counter kernel.calls{name=VdShutdownEngines} = 1
counter kernel.calls{name=VdSetGraphicsInterruptCallback} = 1
counter kernel.calls{name=ExGetXConfigSetting} = 3
counter kernel.calls{name=VdSetSystemCommandBufferGpuIdentifierAddress} = 2
counter kernel.calls{name=MmGetPhysicalAddress} = 1
counter kernel.calls{name=VdInitializeRingBuffer} = 1
counter kernel.calls{name=VdEnableRingBufferRPtrWriteBack} = 1
counter kernel.calls{name=KiApcNormalRoutineNop} = 1
counter kernel.calls{name=KeSetBasePriorityThread} = 3
counter kernel.calls{name=VdQueryVideoMode} = 2
counter kernel.calls{name=VdQueryVideoFlags} = 2
counter kernel.calls{name=VdCallGraphicsNotificationRoutines} = 1
counter kernel.calls{name=VdRetrainEDRAMWorker} = 1
counter kernel.calls{name=VdRetrainEDRAM} = 3
counter kernel.calls{name=VdIsHSIOTrainingSucceeded} = 1
counter kernel.calls{name=VdGetSystemCommandBuffer} = 2
counter kernel.calls{name=VdSwap} = 2
counter gpu.interrupt.delivered{source=1} = 2
counter kernel.calls{name=KeAcquireSpinLockAtRaisedIrql} = 28
counter kernel.calls{name=KeReleaseSpinLockFromRaisedIrql} = 28
counter kernel.calls{name=VdGetCurrentDisplayGamma} = 1
counter gpu.interrupt.delivered{source=0} = 3295
counter kernel.calls{name=VdSetDisplayMode} = 1
counter kernel.calls{name=VdGetCurrentDisplayInformation} = 1
counter kernel.calls{name=RtlFillMemoryUlong} = 1
counter kernel.calls{name=VdInitializeScalerCommandBuffer} = 1
counter kernel.calls{name=VdPersistDisplay} = 1
counter kernel.calls{name=NtResumeThread} = 6
counter kernel.calls{name=XGetGameRegion} = 2
counter kernel.calls{name=KeInitializeSemaphore} = 1
counter kernel.calls{name=KeResumeThread} = 2
counter kernel.calls{name=KeRaiseIrqlToDpcLevel} = 33
counter kernel.calls{name=KfLowerIrql} = 26
counter kernel.calls{name=XAudioRegisterRenderDriverClient} = 1
counter kernel.calls{name=ObLookupThreadByThreadId} = 2
counter kernel.calls{name=ObOpenObjectByPointer} = 2
counter kernel.calls{name=XNotifyPositionUI} = 1
counter kernel.calls{name=NtCreateTimer} = 1
counter kernel.calls{name=NtSetTimerEx} = 1
counter kernel.calls{name=XamInputGetCapabilities} = 8
counter kernel.calls{name=XNotifyGetNext} = 1489735
counter kernel.calls{name=XamUserGetSigninState} = 2
counter kernel.calls{name=XamUserGetXUID} = 1
counter kernel.calls{name=XamUserReadProfileSettings} = 2

View File

@@ -0,0 +1,694 @@
2026-05-10T10:33:07.548934Z  INFO cmd_exec:load_xex_data: xenia_rs: detected disc image, extracting default.xex path=sylpheed.iso path=sylpheed.iso
2026-05-10T10:33:07.550507Z  INFO cmd_exec: xenia_rs: XEX file format compression="normal (LZX)" encryption="normal (AES)" path=sylpheed.iso
2026-05-10T10:33:07.550528Z  INFO cmd_exec: xenia_rs: loading XEX entry=0x824ab748 base=0x82000000 path=sylpheed.iso
2026-05-10T10:33:07.793209Z  INFO cmd_exec:load_image:load_normal_compressed: xenia_xex::loader: LZX decompressed: 3428942 -> 9568256 bytes path=sylpheed.iso bytes=3497984 bytes_in=3485696
2026-05-10T10:33:07.793891Z  INFO cmd_exec:load_image: xenia_xex::loader: image loaded bytes_in=3485696 bytes_out=9568256 ratio=2.745005875440658 elapsed_ms=243.0 path=sylpheed.iso bytes=3497984
2026-05-10T10:33:07.800861Z  INFO cmd_exec: xenia_rs: import thunks mapped thunks=194 path=sylpheed.iso
2026-05-10T10:33:07.804687Z  INFO cmd_exec: xenia_rs: pc probes armed: 1 (0x8228fac8); consumer-snapshots: 0 path=sylpheed.iso
2026-05-10T10:33:07.804995Z  INFO cmd_exec: xenia_rs: starting execution limit=500000000 path=sylpheed.iso
2026-05-10T10:33:07.805009Z  INFO cmd_exec: xenia_rs: gpu: threaded backend — spawning worker thread path=sylpheed.iso
2026-05-10T10:33:07.811463Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x100000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:07.811502Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x10000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:07.811640Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=10 flags=0x00000400 result=1 lr=0x824ab598 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.154275Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x1008 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.154338Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x100c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.154649Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x1010 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.155075Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0/" err=File not found: Cache0/ handle=0x1014 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.155093Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=11 flags=0x00000400 result=0 lr=0x824a99a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.155118Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: args v1=0x02080002 v2=0x00000000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.155148Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=2 on hw=1 entry=0x824a93c8 start_ctx=0x828a28f0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.155158Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: tid=2 handle=0x1018 hw=1 callback=0x824a93c8 message=0x828a28f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.155325Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x101c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.155337Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x4acc5000 size=0xff000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.155482Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=3 on hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.155490Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=3 handle=0x1024 hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.156330Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x102c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.156362Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=4 on hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.156368Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=4 handle=0x1030 hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.156422Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1034 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.156524Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/access" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.156565Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.156597Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/recent" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.156962Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="config.ini" size=400 handle=0x1038 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.157098Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=5 on hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.157110Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=5 handle=0x1048 hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.157448Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 400 bytes from "config.ini" @ 0 (handle=0x1038) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.158276Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615e46ee8ca.tmp" host="/tmp/xenia-rs-cache-581867-0/d4ea4615e46ee8ca.tmp" disp=3 size=0 handle=0x1050 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.158350Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 400 bytes to "cache:/d4ea4615e46ee8ca.tmp" @ 0 (handle=0x1050) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.158408Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1054 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.158511Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/access" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.158537Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.158565Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/recent" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.158756Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615" host="/tmp/xenia-rs-cache-581867-0/d4ea4615" disp=2 size=0 handle=0x1058 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.158783Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-581867-0/d4ea4615") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.158814Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615e46ee8ca.tmp" host="/tmp/xenia-rs-cache-581867-0/d4ea4615e46ee8ca.tmp" disp=1 size=400 handle=0x105c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.163431Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="dat/files.tbl" err=File not found: dat/files.tbl handle=0x1060 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.166134Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.pak" size=964 handle=0x106c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.166454Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 964 bytes from "dat/tables.pak" @ 0 (handle=0x106c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.167173Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45ce534ffea.tmp" host="/tmp/xenia-rs-cache-581867-0/69d8e45ce534ffea.tmp" disp=3 size=0 handle=0x1074 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.167233Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 964 bytes to "cache:/69d8e45ce534ffea.tmp" @ 0 (handle=0x1074) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.167280Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1078 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.167495Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-581867-0/access" disp=5 size=0 handle=0x107c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.167529Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 12 bytes to "cache:/access" @ 0 (handle=0x107c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.167621Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.167716Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-581867-0/recent" disp=5 size=0 handle=0x1080 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.167774Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 8 bytes to "cache:/recent" @ 0 (handle=0x1080) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.167992Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c" host="/tmp/xenia-rs-cache-581867-0/69d8e45c" disp=2 size=0 handle=0x1084 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.168041Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-581867-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.168067Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45ce534ffea.tmp" host="/tmp/xenia-rs-cache-581867-0/69d8e45ce534ffea.tmp" disp=1 size=964 handle=0x1088 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.169617Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.p00" size=435498 handle=0x1090 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.170179Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 206848 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.171061Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=6 on hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.171107Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=6 handle=0x10a8 hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.171972Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c9355f2f8.tmp" host="/tmp/xenia-rs-cache-581867-0/69d8e45c9355f2f8.tmp" disp=3 size=0 handle=0x10ac path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.172038Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/69d8e45c9355f2f8.tmp" @ 0 (handle=0x10ac) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.172090Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x10b0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.172444Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-581867-0/access" disp=5 size=0 handle=0x10b4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.172485Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 24 bytes to "cache:/access" @ 0 (handle=0x10b4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.172533Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.172618Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-581867-0/recent" disp=5 size=0 handle=0x10b8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.172657Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 16 bytes to "cache:/recent" @ 0 (handle=0x10b8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.172975Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.173001Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-581867-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.173027Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c9355f2f8.tmp" host="/tmp/xenia-rs-cache-581867-0/69d8e45c9355f2f8.tmp" disp=1 size=2048 handle=0x10bc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.179095Z  INFO cmd_exec:run_execution: xenia_kernel::exports: VdSetGraphicsInterruptCallback(0x824be9a0, 0x4244df00) — callback armed path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.179370Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=7 on hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false pri=0 mask=0x04 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:08.179416Z  INFO xenia_gpu::gpu_system: gpu: ring initialized base=0x0adcc000 size_bytes=4096 size_dwords=1024
2026-05-10T10:33:08.179460Z  INFO xenia_gpu::gpu_system: gpu: rptr writeback enabled addr=0x008619fc block_dwords=64
2026-05-10T10:33:08.179490Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=7 handle=0x10cc hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false aff=0x04 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.082761Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=1 fb=0x0b1d8000 width=1280 height=720
2026-05-10T10:33:09.121346Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=8 on hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.121367Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=8 handle=0x10d8 hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.123338Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/tables.p00" @ 86016 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.124974Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3a2c8c185.tmp" host="/tmp/xenia-rs-cache-581867-0/aab216c3a2c8c185.tmp" disp=3 size=0 handle=0x10ec path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.125270Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 102400 bytes to "cache:/aab216c3a2c8c185.tmp" @ 0 (handle=0x10ec) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.125427Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x10f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.126192Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-581867-0/access" disp=5 size=0 handle=0x10f4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.126303Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 36 bytes to "cache:/access" @ 0 (handle=0x10f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.126382Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.126499Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-581867-0/recent" disp=5 size=0 handle=0x10f8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.126564Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 24 bytes to "cache:/recent" @ 0 (handle=0x10f8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.126972Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3" host="/tmp/xenia-rs-cache-581867-0/aab216c3" disp=2 size=0 handle=0x10fc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.127134Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-581867-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.127186Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3a2c8c185.tmp" host="/tmp/xenia-rs-cache-581867-0/aab216c3a2c8c185.tmp" disp=1 size=102400 handle=0x1100 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.405735Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.pak" size=114244 handle=0x1108 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.406322Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 114244 bytes from "dat/sound.pak" @ 0 (handle=0x1108) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.411629Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c939a9dcc.tmp" host="/tmp/xenia-rs-cache-581867-0/69d8e45c939a9dcc.tmp" disp=3 size=0 handle=0x1110 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.411819Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 114244 bytes to "cache:/69d8e45c939a9dcc.tmp" @ 0 (handle=0x1110) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.411899Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1114 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.412261Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-581867-0/access" disp=5 size=0 handle=0x1118 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.412320Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 48 bytes to "cache:/access" @ 0 (handle=0x1118) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.412381Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.412472Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-581867-0/recent" disp=5 size=0 handle=0x111c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.412527Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 32 bytes to "cache:/recent" @ 0 (handle=0x111c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.412747Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.412799Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-581867-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.412849Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c939a9dcc.tmp" host="/tmp/xenia-rs-cache-581867-0/69d8e45c939a9dcc.tmp" disp=1 size=114244 handle=0x1120 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.426994Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.p04" size=14903296 handle=0x1128 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.427487Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/sound.p04" @ 5931008 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.428766Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c973a5c0a.tmp" host="/tmp/xenia-rs-cache-581867-0/69d8e45c973a5c0a.tmp" disp=3 size=0 handle=0x1138 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.428869Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/69d8e45c973a5c0a.tmp" @ 0 (handle=0x1138) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.428954Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x113c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.429852Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-581867-0/access" disp=5 size=0 handle=0x1140 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.429914Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 60 bytes to "cache:/access" @ 0 (handle=0x1140) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.430008Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.430128Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-581867-0/recent" disp=5 size=0 handle=0x1144 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.430187Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 40 bytes to "cache:/recent" @ 0 (handle=0x1144) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.430588Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.430640Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-581867-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.430694Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c973a5c0a.tmp" host="/tmp/xenia-rs-cache-581867-0/69d8e45c973a5c0a.tmp" disp=1 size=2048 handle=0x1148 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.493386Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=9 on hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true pri=0 mask=0x10 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.493410Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=9 handle=0x114c hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true aff=0x10 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.493448Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=10 on hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true pri=0 mask=0x20 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.493455Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=10 handle=0x1150 hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true aff=0x20 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.493803Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XAudioRegisterRenderDriverClient: index=0 callback=0x824d6640 arg=0x41e9dd5c wrapped=0x4b9f0000 driver=0x41550000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.570457Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 5933056 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.570813Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6064128 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.571157Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6195200 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.571413Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6326272 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.571658Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6457344 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.572118Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6588416 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.572447Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6719488 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.572813Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6850560 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.573152Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6981632 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.573481Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7112704 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.573769Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7243776 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.574021Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7374848 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.574268Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7505920 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.574523Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7636992 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.574825Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7768064 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.575205Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7899136 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.575467Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8030208 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.575725Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8161280 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.576019Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8292352 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.576348Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8423424 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.576720Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8554496 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.576972Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8685568 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.577226Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8816640 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.577494Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8947712 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.577782Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9078784 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.578031Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9209856 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.578284Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9340928 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.578524Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9472000 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.579358Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9603072 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.579809Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9734144 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.580092Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9865216 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.580348Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9996288 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.580599Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10127360 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.581027Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10258432 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.581324Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10389504 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.581639Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10520576 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.581914Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10651648 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.582193Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10782720 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.582558Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10913792 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.582872Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11044864 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.583177Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11175936 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.583506Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11307008 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.583829Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11438080 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.584136Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11569152 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.584456Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11700224 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.584782Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11831296 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.585089Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11962368 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.585469Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12093440 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.585796Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12224512 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.586103Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12355584 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.586428Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12486656 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.586805Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12617728 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.587151Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12748800 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.587460Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12879872 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.588330Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13010944 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.588674Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13142016 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.589005Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13273088 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.589328Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13404160 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.589763Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13535232 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.590089Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13666304 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.590371Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13797376 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.590720Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13928448 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.591150Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14059520 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.591815Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14190592 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.592146Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14321664 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.592452Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14452736 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.592785Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14583808 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.593160Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14714880 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.593451Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 57344 bytes from "dat/sound.p04" @ 14845952 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.597099Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=11 on hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.597126Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=11 handle=0x1270 hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.597642Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=12 on hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.597662Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=12 handle=0x127c hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.600449Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 77824 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.601962Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c35ee70e0a.tmp" host="/tmp/xenia-rs-cache-581867-0/aab216c35ee70e0a.tmp" disp=3 size=0 handle=0x1294 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.602071Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/aab216c35ee70e0a.tmp" @ 0 (handle=0x1294) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.602156Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1298 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.603120Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-581867-0/access" disp=5 size=0 handle=0x129c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.603169Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 72 bytes to "cache:/access" @ 0 (handle=0x129c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.603250Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.603390Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-581867-0/recent" disp=5 size=0 handle=0x12a0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.603451Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 48 bytes to "cache:/recent" @ 0 (handle=0x12a0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.603863Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/aab216c3" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.603921Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-581867-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.603977Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c35ee70e0a.tmp" host="/tmp/xenia-rs-cache-581867-0/aab216c35ee70e0a.tmp" disp=1 size=2048 handle=0x12a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.605064Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=13 on hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.605079Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=13 handle=0x12a8 hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.605203Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=14 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.605214Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=14 handle=0x12b0 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.605262Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=15 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.605274Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=15 handle=0x12b4 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.610784Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Base.xpr" size=8507404 handle=0x12bc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.613522Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.pak" size=208 handle=0x12c8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.613856Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 208 bytes from "dat/GP_TITLE.pak" @ 0 (handle=0x12c8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.614802Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45cc295ead8.tmp" host="/tmp/xenia-rs-cache-581867-0/69d8e45cc295ead8.tmp" disp=3 size=0 handle=0x12d0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.614881Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 208 bytes to "cache:/69d8e45cc295ead8.tmp" @ 0 (handle=0x12d0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.614941Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x12d4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.615759Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-581867-0/access" disp=5 size=0 handle=0x12d8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.615792Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 84 bytes to "cache:/access" @ 0 (handle=0x12d8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.615822Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.615884Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-581867-0/recent" disp=5 size=0 handle=0x12dc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.615907Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 56 bytes to "cache:/recent" @ 0 (handle=0x12dc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.616065Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.616083Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-581867-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.616103Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45cc295ead8.tmp" host="/tmp/xenia-rs-cache-581867-0/69d8e45cc295ead8.tmp" disp=1 size=208 handle=0x12e0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.616879Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.618065Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.624325Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.p00" size=12283578 handle=0x12f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.635777Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/ptc_pack.xpr" size=20654092 handle=0x12f4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.645183Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 131072 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.645509Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 262144 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.645864Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 393216 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.646177Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 524288 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.646662Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 655360 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.647037Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 786432 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.647369Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 917504 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.647739Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1048576 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.648082Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1179648 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.648389Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1310720 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.648700Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1441792 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.649048Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1572864 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.649429Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1703936 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.658018Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1832960 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.665004Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1964032 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.665251Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2095104 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.665570Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2226176 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.665921Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2357248 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.666142Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2488320 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.666365Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2619392 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.666645Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2750464 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.666914Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2881536 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.667160Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3012608 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.667465Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3143680 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.667780Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3274752 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.668028Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3405824 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.668315Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3536896 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.668601Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3667968 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.668887Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3799040 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.669167Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3930112 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.669455Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4061184 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.669738Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4192256 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.670006Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4323328 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.670273Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4454400 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.670547Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4585472 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.670847Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4716544 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.671233Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4847616 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.671523Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4978688 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.671805Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5109760 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.672527Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5240832 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.672753Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5371904 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.672966Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5502976 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.673187Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5634048 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.673397Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5765120 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.673645Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5896192 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.673883Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6027264 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.674099Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6158336 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.674460Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6289408 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.674761Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6420480 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.674973Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6551552 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.675201Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6682624 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.675442Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6813696 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.675654Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6944768 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.675868Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7075840 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.676078Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7206912 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.676312Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7337984 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.676524Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7469056 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.676756Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7600128 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.676965Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7731200 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.677168Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7862272 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.677406Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7993344 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.677668Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8124416 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.677875Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8255488 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.678123Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 120844 bytes from "hidden/Resource3D/Base.xpr" @ 8386560 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.682659Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 51200 bytes from "dat/GP_TITLE.p00" @ 0 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.685211Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cdba806e.tmp" host="/tmp/xenia-rs-cache-581867-0/87719002cdba806e.tmp" disp=3 size=0 handle=0x1430 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.685348Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 49530 bytes to "cache:/87719002cdba806e.tmp" @ 0 (handle=0x1430) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.685464Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1434 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.686054Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-581867-0/access" disp=5 size=0 handle=0x1438 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.686115Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 96 bytes to "cache:/access" @ 0 (handle=0x1438) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.686177Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.686280Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-581867-0/recent" disp=5 size=0 handle=0x143c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.686337Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 64 bytes to "cache:/recent" @ 0 (handle=0x143c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.686586Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002" host="/tmp/xenia-rs-cache-581867-0/87719002" disp=2 size=0 handle=0x1440 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.686642Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-581867-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.686691Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cdba806e.tmp" host="/tmp/xenia-rs-cache-581867-0/87719002cdba806e.tmp" disp=1 size=49530 handle=0x1444 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.687437Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.688166Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 51200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.695696Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Common.xpr" size=593932 handle=0x1450 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.701206Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/GP_TITLE.p00" @ 182272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.713575Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cec0a96e.tmp" host="/tmp/xenia-rs-cache-581867-0/87719002cec0a96e.tmp" disp=3 size=0 handle=0x145c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.713853Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 232205 bytes to "cache:/87719002cec0a96e.tmp" @ 0 (handle=0x145c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.713923Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1460 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.715198Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-581867-0/access" disp=5 size=0 handle=0x1464 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.715239Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 108 bytes to "cache:/access" @ 0 (handle=0x1464) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.715667Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.715753Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-581867-0/recent" disp=5 size=0 handle=0x1468 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.715787Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 72 bytes to "cache:/recent" @ 0 (handle=0x1468) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.716015Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.716038Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-581867-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.716061Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cec0a96e.tmp" host="/tmp/xenia-rs-cache-581867-0/87719002cec0a96e.tmp" disp=1 size=232205 handle=0x146c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.716757Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 507904 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.722277Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 638976 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.722557Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 770048 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.722820Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 901120 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.723090Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1032192 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.723345Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1163264 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.723649Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1294336 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.723979Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1425408 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.724398Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1556480 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.724661Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1687552 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.724929Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1818624 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.725299Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1949696 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.725616Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2080768 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.725918Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2211840 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.726200Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2342912 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.726528Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2473984 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.726909Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2605056 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.727190Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2736128 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.727434Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2867200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.727784Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2998272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.728109Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 100352 bytes from "dat/GP_TITLE.p00" @ 3129344 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.840945Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a60fcb85.tmp" host="/tmp/xenia-rs-cache-581867-0/87719002a60fcb85.tmp" disp=3 size=0 handle=0x14c4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.843315Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2721352 bytes to "cache:/87719002a60fcb85.tmp" @ 0 (handle=0x14c4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.843465Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x14c8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.844426Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-581867-0/access" disp=5 size=0 handle=0x14cc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.844505Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 120 bytes to "cache:/access" @ 0 (handle=0x14cc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.844581Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.844722Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-581867-0/recent" disp=5 size=0 handle=0x14d0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.844796Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 80 bytes to "cache:/recent" @ 0 (handle=0x14d0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.845075Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.845139Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-581867-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.845199Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a60fcb85.tmp" host="/tmp/xenia-rs-cache-581867-0/87719002a60fcb85.tmp" disp=1 size=2721352 handle=0x14d4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.847203Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "dat/GP_TITLE.p00" @ 468992 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.849561Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002285d8849.tmp" host="/tmp/xenia-rs-cache-581867-0/87719002285d8849.tmp" disp=3 size=0 handle=0x14dc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.849693Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 38706 bytes to "cache:/87719002285d8849.tmp" @ 0 (handle=0x14dc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.849780Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x14e0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.850725Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-581867-0/access" disp=5 size=0 handle=0x14e4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.850808Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 132 bytes to "cache:/access" @ 0 (handle=0x14e4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.850998Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.851473Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-581867-0/recent" disp=5 size=0 handle=0x14e8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.851510Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 88 bytes to "cache:/recent" @ 0 (handle=0x14e8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.851718Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.851741Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-581867-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.851855Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002285d8849.tmp" host="/tmp/xenia-rs-cache-581867-0/87719002285d8849.tmp" disp=1 size=38706 handle=0x14ec path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.852761Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3229696 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.858912Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3360768 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.859156Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3491840 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.859401Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3622912 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.859629Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3753984 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.859942Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3885056 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.860173Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4016128 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.860406Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4147200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.860674Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4278272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.861947Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4409344 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.862192Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 88064 bytes from "dat/GP_TITLE.p00" @ 4540416 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.913762Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a715f485.tmp" host="/tmp/xenia-rs-cache-581867-0/87719002a715f485.tmp" disp=3 size=0 handle=0x151c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.915890Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 1398049 bytes to "cache:/87719002a715f485.tmp" @ 0 (handle=0x151c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.915970Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1520 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.917899Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-581867-0/access" disp=5 size=0 handle=0x1524 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.918476Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 144 bytes to "cache:/access" @ 0 (handle=0x1524) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.918520Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.918621Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-581867-0/recent" disp=5 size=0 handle=0x1528 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.918651Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 96 bytes to "cache:/recent" @ 0 (handle=0x1528) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.918847Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.918873Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-581867-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.918897Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a715f485.tmp" host="/tmp/xenia-rs-cache-581867-0/87719002a715f485.tmp" disp=1 size=1398049 handle=0x152c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.919663Z  INFO cmd_exec:run_execution: xenia_rs: HW thread returned to LR sentinel — marking exited hw_id=1 tid=Some(12) is_main=false cycle=18592099 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.919950Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 116736 bytes from "dat/GP_TITLE.p00" @ 284672 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.919997Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=16 on hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.920009Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=16 handle=0x153c hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.923714Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=17 on hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.923731Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=17 handle=0x154c hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.929843Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cf2a8ccd.tmp" host="/tmp/xenia-rs-cache-581867-0/87719002cf2a8ccd.tmp" disp=3 size=0 handle=0x1558 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.930006Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 115604 bytes to "cache:/87719002cf2a8ccd.tmp" @ 0 (handle=0x1558) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.930097Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x155c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.933323Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-581867-0/access" disp=5 size=0 handle=0x1560 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.933379Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 156 bytes to "cache:/access" @ 0 (handle=0x1560) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.933478Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.933701Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=18 on hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.933712Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=18 handle=0x1570 hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.933806Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-581867-0/recent" disp=5 size=0 handle=0x1574 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.933849Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 104 bytes to "cache:/recent" @ 0 (handle=0x1574) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.933926Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=19 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.933934Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=19 handle=0x1580 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.934000Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=20 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.934007Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=20 handle=0x1588 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.934777Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.934875Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-581867-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.934938Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cf2a8ccd.tmp" host="/tmp/xenia-rs-cache-581867-0/87719002cf2a8ccd.tmp" disp=1 size=115604 handle=0x158c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:09.936689Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 67584 bytes from "dat/GP_TITLE.p00" @ 401408 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.837195Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=2 fb=0x0b1d8000 width=1280 height=720
2026-05-10T10:33:10.847059Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/8771900201a2db9c.tmp" host="/tmp/xenia-rs-cache-581867-0/8771900201a2db9c.tmp" disp=3 size=0 handle=0x1594 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.847308Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 66079 bytes to "cache:/8771900201a2db9c.tmp" @ 0 (handle=0x1594) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.847406Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1598 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.850788Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-581867-0/access" disp=5 size=0 handle=0x159c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.850837Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 168 bytes to "cache:/access" @ 0 (handle=0x159c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.850940Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.851196Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-581867-0/recent" disp=5 size=0 handle=0x15a0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.851253Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 112 bytes to "cache:/recent" @ 0 (handle=0x15a0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.852223Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.852263Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-581867-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.852301Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/8771900201a2db9c.tmp" host="/tmp/xenia-rs-cache-581867-0/8771900201a2db9c.tmp" disp=1 size=66079 handle=0x15a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.856340Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.872395Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 131072 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.873119Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 262144 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.873954Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 393216 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.875536Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 524288 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.876155Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 655360 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.877079Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 786432 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.878427Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 917504 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.879160Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1048576 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.880269Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1179648 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.880838Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1310720 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.881801Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1441792 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.882847Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1572864 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.883485Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1703936 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.884070Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1835008 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.885042Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1966080 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.886533Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2097152 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.887939Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2228224 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.888625Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2359296 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.889382Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2490368 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.890607Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2621440 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.891247Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2752512 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.891873Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2883584 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.892591Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3014656 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.893252Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3145728 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.894148Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3276800 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.895536Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3407872 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.896152Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3538944 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.897057Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3670016 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.897877Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3801088 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.898676Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3932160 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.899427Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4063232 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.900185Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4194304 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.901331Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4325376 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.902005Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4456448 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.902784Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4587520 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.903449Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4718592 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.904669Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4849664 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.905960Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4980736 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.906683Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5111808 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.909864Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5242880 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.910414Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5373952 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.911030Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5505024 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.911585Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5636096 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.912172Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5767168 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.914707Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5898240 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.915523Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6029312 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.916510Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6160384 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.917457Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6291456 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.918318Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6422528 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.924488Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6459392 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.938902Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6590464 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.939576Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6721536 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.940317Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6852608 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.941136Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6983680 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.942422Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7114752 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.943297Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7245824 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.944401Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7376896 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.945290Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7507968 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.946059Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7639040 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.946825Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7770112 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.947433Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7901184 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.948078Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8032256 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.949029Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8163328 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.949743Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8294400 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.950457Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8425472 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.951260Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8556544 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.952206Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8687616 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.952974Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8818688 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.953975Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8949760 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.954943Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9080832 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.955753Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9211904 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.956602Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9342976 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.957546Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9474048 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.958147Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9605120 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.959132Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9736192 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.960005Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9867264 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.960796Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9998336 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.961563Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10129408 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.962219Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10260480 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.962971Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10391552 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.964051Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10522624 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.964894Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10653696 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.965699Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10784768 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.966555Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10915840 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.967115Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11046912 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.967851Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11177984 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.968604Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11309056 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.969283Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11440128 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.970040Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11571200 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.971258Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11702272 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.971944Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11833344 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.972621Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11964416 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.973528Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12095488 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.974257Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12226560 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.975210Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12357632 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.977619Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12488704 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.978281Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12619776 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.979187Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12750848 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.980081Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12881920 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.980760Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13012992 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.981468Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13144064 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.982070Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13275136 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.982718Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13406208 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.983249Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13537280 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.983955Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13668352 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.984521Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13799424 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.985100Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13930496 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.985904Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14061568 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.987054Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14192640 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.987707Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14323712 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.988762Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14454784 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.989407Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14585856 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.990066Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14716928 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.990961Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14848000 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.991704Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14979072 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.993779Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15110144 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.995502Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15241216 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.996058Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15372288 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.996720Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15503360 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.997260Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15634432 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.997854Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15765504 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.998380Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15896576 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:10.999695Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16027648 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.000314Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16158720 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.000912Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16289792 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.001606Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16420864 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.002216Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16551936 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.002803Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16683008 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.003478Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16814080 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.004294Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16945152 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.004916Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17076224 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.005543Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17207296 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.006120Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17338368 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.006760Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17469440 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.007764Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17600512 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.008465Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17731584 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.009305Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17862656 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.010050Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17993728 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.010646Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18124800 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.011418Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18255872 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.012963Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18386944 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.013614Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18518016 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.015513Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18649088 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.016205Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18780160 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.016818Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18911232 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.017595Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19042304 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.018246Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19173376 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.018898Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19304448 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.019996Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19435520 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.020612Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19566592 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.021235Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19697664 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.021976Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19828736 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.022702Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19959808 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.023328Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20090880 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.023980Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20221952 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.024608Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20353024 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.025185Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20484096 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.026489Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38924 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20615168 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:11.035124Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Common.xpr" @ 0 (handle=0x1450) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:41.115959Z  INFO cmd_exec:run_execution: xenia_rs: reached max instruction count limit=500000000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:33:41.118858Z  INFO cmd_exec: xenia_rs: in-memory trace log entries=0 path=sylpheed.iso
2026-05-10T10:33:41.120761Z  INFO cmd_exec: xenia_rs: exec complete wall_ms=33571 instructions=500000019 import_calls=5629636 unimplemented=0 path=sylpheed.iso
2026-05-10T10:33:41.131128Z  INFO xenia_rs::observability: metrics summary:
histogram xex.load_image_ms = count=1 sum=243.000 min=243.000 max=243.000 mean=243.000
counter xex.bytes_in = 3485696
counter xex.bytes_out = 9568256
counter kernel.calls{name=RtlImageXexHeaderField} = 2
counter kernel.calls{name=NtAllocateVirtualMemory} = 3
counter kernel.calls{name=KeGetCurrentProcessType} = 3
counter kernel.calls{name=RtlInitializeCriticalSection} = 29
counter kernel.calls{name=RtlEnterCriticalSection} = 889112
counter kernel.calls{name=RtlLeaveCriticalSection} = 889111
counter kernel.calls{name=XexCheckExecutablePrivilege} = 2
counter kernel.calls{name=XGetAVPack} = 1
counter kernel.calls{name=KeTlsAlloc} = 2
counter kernel.calls{name=KeTlsSetValue} = 2
counter kernel.calls{name=KeQuerySystemTime} = 2
counter kernel.calls{name=RtlInitializeCriticalSectionAndSpinCount} = 104
counter kernel.calls{name=MmAllocatePhysicalMemoryEx} = 17
counter kernel.calls{name=NtCreateEvent} = 395
counter kernel.calls{name=KeQueryPerformanceFrequency} = 6
counter kernel.calls{name=NtCreateFile} = 90
counter kernel.calls{name=NtReadFile} = 344
counter kernel.calls{name=NtClose} = 502
counter kernel.calls{name=XeCryptSha} = 1
counter kernel.calls{name=XeKeysConsolePrivateKeySign} = 1
counter kernel.calls{name=NtWriteFile} = 63
counter kernel.calls{name=RtlInitAnsiString} = 173
counter kernel.calls{name=NtOpenFile} = 51
counter kernel.calls{name=NtDeviceIoControlFile} = 2
counter kernel.calls{name=IoDismountVolumeByFileHandle} = 1
counter kernel.calls{name=NtQueryVolumeInformationFile} = 18
counter kernel.calls{name=KeEnterCriticalRegion} = 4
counter kernel.calls{name=XamTaskSchedule} = 1
counter scheduler.spawn.ok = 19
counter kernel.calls{name=XamTaskCloseHandle} = 1
counter kernel.calls{name=KeWaitForSingleObject} = 5
counter kernel.calls{name=StfsCreateDevice} = 1
counter kernel.calls{name=ObCreateSymbolicLink} = 1
counter kernel.calls{name=ExRegisterTitleTerminateNotification} = 3
counter kernel.calls{name=KeSetEvent} = 1
counter kernel.calls{name=KeResetEvent} = 1
counter kernel.calls{name=KeLeaveCriticalRegion} = 4
counter kernel.calls{name=RtlNtStatusToDosError} = 64
counter kernel.calls{name=ExCreateThread} = 18
counter kernel.calls{name=ObReferenceObjectByHandle} = 15
counter kernel.calls{name=KeSetAffinityThread} = 12
counter kernel.calls{name=ObDereferenceObject} = 17
counter kernel.calls{name=XamContentCreateEnumerator} = 1
counter kernel.calls{name=XamEnumerate} = 1
counter kernel.calls{name=NtWaitForSingleObjectEx} = 1489791
counter kernel.calls{name=NtCreateSemaphore} = 10
counter kernel.calls{name=NtQueryDirectoryFile} = 1
counter kernel.calls{name=NtQueryFullAttributesFile} = 16
counter kernel.calls{name=NtWaitForMultipleObjectsEx} = 865500
counter kernel.calls{name=NtDuplicateObject} = 36
counter kernel.calls{name=NtReleaseSemaphore} = 393
counter kernel.calls{name=NtQueryInformationFile} = 377
counter kernel.calls{name=NtSetInformationFile} = 60
counter kernel.calls{name=NtSetEvent} = 3334
counter kernel.calls{name=MmFreePhysicalMemory} = 12
counter kernel.calls{name=XamNotifyCreateListener} = 1
counter kernel.calls{name=VdInitializeEngines} = 2
counter kernel.calls{name=VdShutdownEngines} = 1
counter kernel.calls{name=VdSetGraphicsInterruptCallback} = 1
counter kernel.calls{name=ExGetXConfigSetting} = 3
counter kernel.calls{name=VdSetSystemCommandBufferGpuIdentifierAddress} = 2
counter kernel.calls{name=MmGetPhysicalAddress} = 1
counter kernel.calls{name=VdInitializeRingBuffer} = 1
counter kernel.calls{name=VdEnableRingBufferRPtrWriteBack} = 1
counter kernel.calls{name=KiApcNormalRoutineNop} = 1
counter kernel.calls{name=KeSetBasePriorityThread} = 3
counter kernel.calls{name=VdQueryVideoMode} = 2
counter kernel.calls{name=VdQueryVideoFlags} = 2
counter kernel.calls{name=VdCallGraphicsNotificationRoutines} = 1
counter kernel.calls{name=VdRetrainEDRAMWorker} = 1
counter kernel.calls{name=VdRetrainEDRAM} = 3
counter kernel.calls{name=VdIsHSIOTrainingSucceeded} = 1
counter kernel.calls{name=VdGetSystemCommandBuffer} = 2
counter kernel.calls{name=VdSwap} = 2
counter gpu.interrupt.delivered{source=1} = 2
counter kernel.calls{name=KeAcquireSpinLockAtRaisedIrql} = 28
counter kernel.calls{name=KeReleaseSpinLockFromRaisedIrql} = 28
counter kernel.calls{name=VdGetCurrentDisplayGamma} = 1
counter gpu.interrupt.delivered{source=0} = 3295
counter kernel.calls{name=VdSetDisplayMode} = 1
counter kernel.calls{name=VdGetCurrentDisplayInformation} = 1
counter kernel.calls{name=RtlFillMemoryUlong} = 1
counter kernel.calls{name=VdInitializeScalerCommandBuffer} = 1
counter kernel.calls{name=VdPersistDisplay} = 1
counter kernel.calls{name=NtResumeThread} = 6
counter kernel.calls{name=XGetGameRegion} = 2
counter kernel.calls{name=KeInitializeSemaphore} = 1
counter kernel.calls{name=KeResumeThread} = 2
counter kernel.calls{name=KeRaiseIrqlToDpcLevel} = 33
counter kernel.calls{name=KfLowerIrql} = 26
counter kernel.calls{name=XAudioRegisterRenderDriverClient} = 1
counter kernel.calls{name=ObLookupThreadByThreadId} = 2
counter kernel.calls{name=ObOpenObjectByPointer} = 2
counter kernel.calls{name=XNotifyPositionUI} = 1
counter kernel.calls{name=NtCreateTimer} = 1
counter kernel.calls{name=NtSetTimerEx} = 1
counter kernel.calls{name=XamInputGetCapabilities} = 8
counter kernel.calls{name=XNotifyGetNext} = 1489735
counter kernel.calls{name=XamUserGetSigninState} = 2
counter kernel.calls{name=XamUserGetXUID} = 1
counter kernel.calls{name=XamUserReadProfileSettings} = 2

View File

@@ -0,0 +1,694 @@
2026-05-10T10:34:34.010382Z  INFO cmd_exec:load_xex_data: xenia_rs: detected disc image, extracting default.xex path=sylpheed.iso path=sylpheed.iso
2026-05-10T10:34:34.011930Z  INFO cmd_exec: xenia_rs: XEX file format compression="normal (LZX)" encryption="normal (AES)" path=sylpheed.iso
2026-05-10T10:34:34.011942Z  INFO cmd_exec: xenia_rs: loading XEX entry=0x824ab748 base=0x82000000 path=sylpheed.iso
2026-05-10T10:34:34.092721Z  INFO cmd_exec:load_image:load_normal_compressed: xenia_xex::loader: LZX decompressed: 3428942 -> 9568256 bytes path=sylpheed.iso bytes=3497984 bytes_in=3485696
2026-05-10T10:34:34.093291Z  INFO cmd_exec:load_image: xenia_xex::loader: image loaded bytes_in=3485696 bytes_out=9568256 ratio=2.745005875440658 elapsed_ms=81.0 path=sylpheed.iso bytes=3497984
2026-05-10T10:34:34.098452Z  INFO cmd_exec: xenia_rs: import thunks mapped thunks=194 path=sylpheed.iso
2026-05-10T10:34:34.099528Z  INFO cmd_exec: xenia_rs: pc probes armed: 1 (0x822f1b4c); consumer-snapshots: 0 path=sylpheed.iso
2026-05-10T10:34:34.099794Z  INFO cmd_exec: xenia_rs: starting execution limit=500000000 path=sylpheed.iso
2026-05-10T10:34:34.099806Z  INFO cmd_exec: xenia_rs: gpu: threaded backend — spawning worker thread path=sylpheed.iso
2026-05-10T10:34:34.106059Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x100000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.106122Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x10000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.106267Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=10 flags=0x00000400 result=1 lr=0x824ab598 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.418800Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x1008 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.418894Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x100c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.419227Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x1010 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.419843Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0/" err=File not found: Cache0/ handle=0x1014 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.419928Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=11 flags=0x00000400 result=0 lr=0x824a99a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.419982Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: args v1=0x02080002 v2=0x00000000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.420037Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=2 on hw=1 entry=0x824a93c8 start_ctx=0x828a28f0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.420077Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: tid=2 handle=0x1018 hw=1 callback=0x824a93c8 message=0x828a28f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.420291Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x101c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.420343Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x4acc5000 size=0xff000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.420517Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=3 on hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.420558Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=3 handle=0x1024 hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.421706Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x102c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.421768Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=4 on hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.421802Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=4 handle=0x1030 hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.421879Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1034 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.422014Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/access" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.422084Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.422143Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/recent" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.422558Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="config.ini" size=400 handle=0x1038 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.422730Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=5 on hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.422762Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=5 handle=0x1048 hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.423123Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 400 bytes from "config.ini" @ 0 (handle=0x1038) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.424076Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615e46ee8ca.tmp" host="/tmp/xenia-rs-cache-582426-0/d4ea4615e46ee8ca.tmp" disp=3 size=0 handle=0x1050 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.424175Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 400 bytes to "cache:/d4ea4615e46ee8ca.tmp" @ 0 (handle=0x1050) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.424258Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1054 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.424386Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/access" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.424437Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.424678Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/recent" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.424956Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615" host="/tmp/xenia-rs-cache-582426-0/d4ea4615" disp=2 size=0 handle=0x1058 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.425014Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582426-0/d4ea4615") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.425068Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615e46ee8ca.tmp" host="/tmp/xenia-rs-cache-582426-0/d4ea4615e46ee8ca.tmp" disp=1 size=400 handle=0x105c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.430055Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="dat/files.tbl" err=File not found: dat/files.tbl handle=0x1060 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.433097Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.pak" size=964 handle=0x106c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.433479Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 964 bytes from "dat/tables.pak" @ 0 (handle=0x106c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.434236Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45ce534ffea.tmp" host="/tmp/xenia-rs-cache-582426-0/69d8e45ce534ffea.tmp" disp=3 size=0 handle=0x1074 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.434328Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 964 bytes to "cache:/69d8e45ce534ffea.tmp" @ 0 (handle=0x1074) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.434398Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1078 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.434665Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582426-0/access" disp=5 size=0 handle=0x107c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.434758Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 12 bytes to "cache:/access" @ 0 (handle=0x107c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.434818Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.434911Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582426-0/recent" disp=5 size=0 handle=0x1080 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.434969Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 8 bytes to "cache:/recent" @ 0 (handle=0x1080) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.435194Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c" host="/tmp/xenia-rs-cache-582426-0/69d8e45c" disp=2 size=0 handle=0x1084 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.435274Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582426-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.435322Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45ce534ffea.tmp" host="/tmp/xenia-rs-cache-582426-0/69d8e45ce534ffea.tmp" disp=1 size=964 handle=0x1088 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.436799Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.p00" size=435498 handle=0x1090 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.437180Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 206848 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.437758Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=6 on hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.437791Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=6 handle=0x10a8 hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.438651Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c9355f2f8.tmp" host="/tmp/xenia-rs-cache-582426-0/69d8e45c9355f2f8.tmp" disp=3 size=0 handle=0x10ac path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.438745Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/69d8e45c9355f2f8.tmp" @ 0 (handle=0x10ac) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.438822Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x10b0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.439286Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582426-0/access" disp=5 size=0 handle=0x10b4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.439350Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 24 bytes to "cache:/access" @ 0 (handle=0x10b4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.439430Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.439538Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582426-0/recent" disp=5 size=0 handle=0x10b8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.439600Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 16 bytes to "cache:/recent" @ 0 (handle=0x10b8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.440135Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.440186Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582426-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.440240Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c9355f2f8.tmp" host="/tmp/xenia-rs-cache-582426-0/69d8e45c9355f2f8.tmp" disp=1 size=2048 handle=0x10bc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.446667Z  INFO cmd_exec:run_execution: xenia_kernel::exports: VdSetGraphicsInterruptCallback(0x824be9a0, 0x4244df00) — callback armed path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.446912Z  INFO xenia_gpu::gpu_system: gpu: ring initialized base=0x0adcc000 size_bytes=4096 size_dwords=1024
2026-05-10T10:34:34.446932Z  INFO xenia_gpu::gpu_system: gpu: rptr writeback enabled addr=0x008619fc block_dwords=64
2026-05-10T10:34:34.447012Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=7 on hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false pri=0 mask=0x04 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:34.447068Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=7 handle=0x10cc hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false aff=0x04 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.349537Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=1 fb=0x0b1d8000 width=1280 height=720
2026-05-10T10:34:35.395254Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=8 on hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.395277Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=8 handle=0x10d8 hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.397436Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/tables.p00" @ 86016 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.399051Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3a2c8c185.tmp" host="/tmp/xenia-rs-cache-582426-0/aab216c3a2c8c185.tmp" disp=3 size=0 handle=0x10ec path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.399206Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 102400 bytes to "cache:/aab216c3a2c8c185.tmp" @ 0 (handle=0x10ec) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.399265Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x10f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.399737Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582426-0/access" disp=5 size=0 handle=0x10f4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.399773Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 36 bytes to "cache:/access" @ 0 (handle=0x10f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.399822Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.399909Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582426-0/recent" disp=5 size=0 handle=0x10f8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.399938Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 24 bytes to "cache:/recent" @ 0 (handle=0x10f8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.400318Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3" host="/tmp/xenia-rs-cache-582426-0/aab216c3" disp=2 size=0 handle=0x10fc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.400343Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582426-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.400371Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3a2c8c185.tmp" host="/tmp/xenia-rs-cache-582426-0/aab216c3a2c8c185.tmp" disp=1 size=102400 handle=0x1100 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.672420Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.pak" size=114244 handle=0x1108 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.672854Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 114244 bytes from "dat/sound.pak" @ 0 (handle=0x1108) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.677469Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c939a9dcc.tmp" host="/tmp/xenia-rs-cache-582426-0/69d8e45c939a9dcc.tmp" disp=3 size=0 handle=0x1110 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.677890Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 114244 bytes to "cache:/69d8e45c939a9dcc.tmp" @ 0 (handle=0x1110) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.678003Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1114 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.678370Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582426-0/access" disp=5 size=0 handle=0x1118 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.678438Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 48 bytes to "cache:/access" @ 0 (handle=0x1118) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.678509Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.678616Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582426-0/recent" disp=5 size=0 handle=0x111c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.678682Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 32 bytes to "cache:/recent" @ 0 (handle=0x111c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.678966Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.679033Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582426-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.679117Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c939a9dcc.tmp" host="/tmp/xenia-rs-cache-582426-0/69d8e45c939a9dcc.tmp" disp=1 size=114244 handle=0x1120 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.694183Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.p04" size=14903296 handle=0x1128 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.694649Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/sound.p04" @ 5931008 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.696001Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c973a5c0a.tmp" host="/tmp/xenia-rs-cache-582426-0/69d8e45c973a5c0a.tmp" disp=3 size=0 handle=0x1138 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.696072Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/69d8e45c973a5c0a.tmp" @ 0 (handle=0x1138) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.696127Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x113c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.696764Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582426-0/access" disp=5 size=0 handle=0x1140 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.696873Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 60 bytes to "cache:/access" @ 0 (handle=0x1140) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.697011Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.697152Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582426-0/recent" disp=5 size=0 handle=0x1144 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.697232Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 40 bytes to "cache:/recent" @ 0 (handle=0x1144) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.697615Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.697680Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582426-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.697744Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c973a5c0a.tmp" host="/tmp/xenia-rs-cache-582426-0/69d8e45c973a5c0a.tmp" disp=1 size=2048 handle=0x1148 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.759405Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=9 on hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true pri=0 mask=0x10 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.759476Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=9 handle=0x114c hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true aff=0x10 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.759570Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=10 on hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true pri=0 mask=0x20 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.759658Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=10 handle=0x1150 hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true aff=0x20 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.760086Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XAudioRegisterRenderDriverClient: index=0 callback=0x824d6640 arg=0x41e9dd5c wrapped=0x4b9f0000 driver=0x41550000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.839927Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 5933056 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.840217Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6064128 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.840575Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6195200 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.840835Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6326272 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.841104Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6457344 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.841518Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6588416 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.841907Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6719488 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.842240Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6850560 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.842509Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6981632 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.842783Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7112704 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.843032Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7243776 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.843325Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7374848 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.843601Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7505920 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.843868Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7636992 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.844194Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7768064 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.844451Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7899136 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.844725Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8030208 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.844995Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8161280 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.845245Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8292352 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.845528Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8423424 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.845791Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8554496 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.846057Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8685568 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.846306Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8816640 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.846583Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8947712 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.846838Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9078784 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.847107Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9209856 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.847415Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9340928 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.847675Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9472000 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.847957Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9603072 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.848410Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9734144 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.848859Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9865216 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.849166Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9996288 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.849416Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10127360 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.849685Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10258432 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.849939Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10389504 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.850215Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10520576 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.850458Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10651648 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.850709Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10782720 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.851027Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10913792 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.851369Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11044864 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.851716Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11175936 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.852131Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11307008 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.852437Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11438080 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.852706Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11569152 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.853003Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11700224 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.853211Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11831296 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.853430Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11962368 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.853673Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12093440 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.854205Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12224512 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.855072Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12355584 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.855304Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12486656 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.855586Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12617728 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.855816Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12748800 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.856067Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12879872 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.856356Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13010944 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.856641Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13142016 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.856948Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13273088 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.857234Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13404160 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.858367Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13535232 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.858598Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13666304 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.858838Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13797376 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.859083Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13928448 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.859501Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14059520 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.859730Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14190592 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.859942Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14321664 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.860183Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14452736 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.860455Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14583808 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.860754Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14714880 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.860934Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 57344 bytes from "dat/sound.p04" @ 14845952 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.864440Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=11 on hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.864457Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=11 handle=0x1270 hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.864912Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=12 on hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.864923Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=12 handle=0x127c hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.867692Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 77824 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.869201Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c35ee70e0a.tmp" host="/tmp/xenia-rs-cache-582426-0/aab216c35ee70e0a.tmp" disp=3 size=0 handle=0x1294 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.869282Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/aab216c35ee70e0a.tmp" @ 0 (handle=0x1294) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.869344Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1298 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.870635Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582426-0/access" disp=5 size=0 handle=0x129c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.870674Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 72 bytes to "cache:/access" @ 0 (handle=0x129c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.870724Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.870818Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582426-0/recent" disp=5 size=0 handle=0x12a0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.870848Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 48 bytes to "cache:/recent" @ 0 (handle=0x12a0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.871548Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/aab216c3" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.871585Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582426-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.871614Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c35ee70e0a.tmp" host="/tmp/xenia-rs-cache-582426-0/aab216c35ee70e0a.tmp" disp=1 size=2048 handle=0x12a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.872892Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=13 on hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.872908Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=13 handle=0x12a8 hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.873108Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=14 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.873118Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=14 handle=0x12b0 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.873164Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=15 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.873170Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=15 handle=0x12b4 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.879433Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Base.xpr" size=8507404 handle=0x12bc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.882329Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.pak" size=208 handle=0x12c8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.882710Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 208 bytes from "dat/GP_TITLE.pak" @ 0 (handle=0x12c8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.884316Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45cc295ead8.tmp" host="/tmp/xenia-rs-cache-582426-0/69d8e45cc295ead8.tmp" disp=3 size=0 handle=0x12d0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.884388Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 208 bytes to "cache:/69d8e45cc295ead8.tmp" @ 0 (handle=0x12d0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.884437Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x12d4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.884954Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582426-0/access" disp=5 size=0 handle=0x12d8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.884986Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 84 bytes to "cache:/access" @ 0 (handle=0x12d8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.885066Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.885169Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582426-0/recent" disp=5 size=0 handle=0x12dc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.885213Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 56 bytes to "cache:/recent" @ 0 (handle=0x12dc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.885505Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.885532Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582426-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.885564Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45cc295ead8.tmp" host="/tmp/xenia-rs-cache-582426-0/69d8e45cc295ead8.tmp" disp=1 size=208 handle=0x12e0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.886620Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.888446Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.894798Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.p00" size=12283578 handle=0x12f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.905762Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/ptc_pack.xpr" size=20654092 handle=0x12f4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.912743Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 131072 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.913160Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 262144 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.913451Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 393216 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.913938Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 524288 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.914686Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 655360 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.915190Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 786432 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.915718Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 917504 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.916147Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1048576 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.916521Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1179648 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.916954Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1310720 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.917321Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1441792 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.917717Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1572864 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.918114Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1703936 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.928958Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1832960 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.936545Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1964032 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.937826Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2095104 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.938045Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2226176 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.938264Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2357248 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.938519Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2488320 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.938886Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2619392 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.939158Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2750464 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.939567Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2881536 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.940074Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3012608 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.940326Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3143680 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.940566Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3274752 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.940806Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3405824 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.941170Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3536896 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.941408Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3667968 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.941820Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3799040 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.942271Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3930112 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.942578Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4061184 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.942821Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4192256 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.943133Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4323328 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.943365Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4454400 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.943577Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4585472 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.943830Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4716544 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.944098Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4847616 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.944394Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4978688 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.944659Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5109760 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.944967Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5240832 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.946355Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5371904 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.946610Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5502976 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.946825Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5634048 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.947028Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5765120 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.947302Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5896192 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.947615Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6027264 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.947997Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6158336 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.948296Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6289408 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.948628Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6420480 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.948837Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6551552 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.949037Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6682624 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.949247Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6813696 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.949619Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6944768 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.950010Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7075840 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.950333Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7206912 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.950641Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7337984 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.950883Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7469056 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.951154Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7600128 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.951462Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7731200 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.951820Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7862272 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.952073Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7993344 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.952285Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8124416 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.952724Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8255488 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.952988Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 120844 bytes from "hidden/Resource3D/Base.xpr" @ 8386560 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.957925Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 51200 bytes from "dat/GP_TITLE.p00" @ 0 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.960581Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cdba806e.tmp" host="/tmp/xenia-rs-cache-582426-0/87719002cdba806e.tmp" disp=3 size=0 handle=0x1430 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.960689Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 49530 bytes to "cache:/87719002cdba806e.tmp" @ 0 (handle=0x1430) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.960742Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1434 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.961313Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582426-0/access" disp=5 size=0 handle=0x1438 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.961343Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 96 bytes to "cache:/access" @ 0 (handle=0x1438) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.961377Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.961512Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582426-0/recent" disp=5 size=0 handle=0x143c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.961573Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 64 bytes to "cache:/recent" @ 0 (handle=0x143c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.961756Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002" host="/tmp/xenia-rs-cache-582426-0/87719002" disp=2 size=0 handle=0x1440 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.961776Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582426-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.961795Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cdba806e.tmp" host="/tmp/xenia-rs-cache-582426-0/87719002cdba806e.tmp" disp=1 size=49530 handle=0x1444 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.962772Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.963515Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 51200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.966493Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Common.xpr" size=593932 handle=0x1450 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.970485Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/GP_TITLE.p00" @ 182272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.980049Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cec0a96e.tmp" host="/tmp/xenia-rs-cache-582426-0/87719002cec0a96e.tmp" disp=3 size=0 handle=0x145c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.980276Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 232205 bytes to "cache:/87719002cec0a96e.tmp" @ 0 (handle=0x145c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.980357Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1460 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.981046Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582426-0/access" disp=5 size=0 handle=0x1464 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.981236Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 108 bytes to "cache:/access" @ 0 (handle=0x1464) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.981300Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.981494Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582426-0/recent" disp=5 size=0 handle=0x1468 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.981563Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 72 bytes to "cache:/recent" @ 0 (handle=0x1468) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.981876Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.981946Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582426-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.981998Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cec0a96e.tmp" host="/tmp/xenia-rs-cache-582426-0/87719002cec0a96e.tmp" disp=1 size=232205 handle=0x146c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.982566Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 507904 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.988094Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 638976 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.988376Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 770048 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.988724Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 901120 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.989061Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1032192 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.989289Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1163264 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.989567Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1294336 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.989792Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1425408 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.990033Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1556480 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.990256Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1687552 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.990528Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1818624 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.990765Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1949696 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.991015Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2080768 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.991229Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2211840 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.991469Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2342912 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.991744Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2473984 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.991966Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2605056 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.992207Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2736128 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.992427Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2867200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.992740Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2998272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:35.992961Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 100352 bytes from "dat/GP_TITLE.p00" @ 3129344 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.106085Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a60fcb85.tmp" host="/tmp/xenia-rs-cache-582426-0/87719002a60fcb85.tmp" disp=3 size=0 handle=0x14c4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.108763Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2721352 bytes to "cache:/87719002a60fcb85.tmp" @ 0 (handle=0x14c4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.108841Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x14c8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.109704Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582426-0/access" disp=5 size=0 handle=0x14cc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.109772Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 120 bytes to "cache:/access" @ 0 (handle=0x14cc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.109873Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.109984Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582426-0/recent" disp=5 size=0 handle=0x14d0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.110039Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 80 bytes to "cache:/recent" @ 0 (handle=0x14d0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.110247Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.110291Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582426-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.110337Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a60fcb85.tmp" host="/tmp/xenia-rs-cache-582426-0/87719002a60fcb85.tmp" disp=1 size=2721352 handle=0x14d4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.111025Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "dat/GP_TITLE.p00" @ 468992 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.113450Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002285d8849.tmp" host="/tmp/xenia-rs-cache-582426-0/87719002285d8849.tmp" disp=3 size=0 handle=0x14dc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.113519Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 38706 bytes to "cache:/87719002285d8849.tmp" @ 0 (handle=0x14dc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.113566Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x14e0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.114239Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582426-0/access" disp=5 size=0 handle=0x14e4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.114319Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 132 bytes to "cache:/access" @ 0 (handle=0x14e4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.114380Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.114486Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582426-0/recent" disp=5 size=0 handle=0x14e8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.114541Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 88 bytes to "cache:/recent" @ 0 (handle=0x14e8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.114767Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.114816Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582426-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.114887Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002285d8849.tmp" host="/tmp/xenia-rs-cache-582426-0/87719002285d8849.tmp" disp=1 size=38706 handle=0x14ec path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.117522Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3229696 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.122297Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3360768 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.122556Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3491840 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.122836Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3622912 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.123100Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3753984 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.123341Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3885056 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.123584Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4016128 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.123818Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4147200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.124074Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4278272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.124347Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4409344 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.124982Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 88064 bytes from "dat/GP_TITLE.p00" @ 4540416 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.174134Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a715f485.tmp" host="/tmp/xenia-rs-cache-582426-0/87719002a715f485.tmp" disp=3 size=0 handle=0x151c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.174868Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 1398049 bytes to "cache:/87719002a715f485.tmp" @ 0 (handle=0x151c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.174967Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1520 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.175702Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582426-0/access" disp=5 size=0 handle=0x1524 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.175773Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 144 bytes to "cache:/access" @ 0 (handle=0x1524) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.175832Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.175940Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582426-0/recent" disp=5 size=0 handle=0x1528 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.175993Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 96 bytes to "cache:/recent" @ 0 (handle=0x1528) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.176213Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.176259Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582426-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.176307Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a715f485.tmp" host="/tmp/xenia-rs-cache-582426-0/87719002a715f485.tmp" disp=1 size=1398049 handle=0x152c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.177284Z  INFO cmd_exec:run_execution: xenia_rs: HW thread returned to LR sentinel — marking exited hw_id=1 tid=Some(12) is_main=false cycle=18592099 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.177616Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 116736 bytes from "dat/GP_TITLE.p00" @ 284672 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.177692Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=16 on hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.177728Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=16 handle=0x153c hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.180168Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=17 on hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.180209Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=17 handle=0x154c hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.186152Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cf2a8ccd.tmp" host="/tmp/xenia-rs-cache-582426-0/87719002cf2a8ccd.tmp" disp=3 size=0 handle=0x1558 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.186314Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 115604 bytes to "cache:/87719002cf2a8ccd.tmp" @ 0 (handle=0x1558) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.186415Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x155c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.188664Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582426-0/access" disp=5 size=0 handle=0x1560 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.188774Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 156 bytes to "cache:/access" @ 0 (handle=0x1560) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.188880Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.189163Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=18 on hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.189203Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=18 handle=0x1570 hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.189303Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582426-0/recent" disp=5 size=0 handle=0x1574 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.189371Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 104 bytes to "cache:/recent" @ 0 (handle=0x1574) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.189471Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=19 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.189502Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=19 handle=0x1580 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.189595Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=20 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.189627Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=20 handle=0x1588 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.190221Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.190285Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582426-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.190360Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cf2a8ccd.tmp" host="/tmp/xenia-rs-cache-582426-0/87719002cf2a8ccd.tmp" disp=1 size=115604 handle=0x158c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:36.192546Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 67584 bytes from "dat/GP_TITLE.p00" @ 401408 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.093575Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=2 fb=0x0b1d8000 width=1280 height=720
2026-05-10T10:34:37.105805Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/8771900201a2db9c.tmp" host="/tmp/xenia-rs-cache-582426-0/8771900201a2db9c.tmp" disp=3 size=0 handle=0x1594 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.105996Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 66079 bytes to "cache:/8771900201a2db9c.tmp" @ 0 (handle=0x1594) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.106108Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1598 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.109906Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582426-0/access" disp=5 size=0 handle=0x159c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.109964Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 168 bytes to "cache:/access" @ 0 (handle=0x159c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.110056Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.110293Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582426-0/recent" disp=5 size=0 handle=0x15a0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.110337Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 112 bytes to "cache:/recent" @ 0 (handle=0x15a0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.111057Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.111095Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582426-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.111131Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/8771900201a2db9c.tmp" host="/tmp/xenia-rs-cache-582426-0/8771900201a2db9c.tmp" disp=1 size=66079 handle=0x15a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.113991Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.125672Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 131072 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.126268Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 262144 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.126836Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 393216 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.127401Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 524288 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.127958Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 655360 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.128638Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 786432 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.129190Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 917504 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.129838Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1048576 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.130383Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1179648 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.130950Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1310720 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.131526Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1441792 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.132136Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1572864 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.132997Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1703936 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.133805Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1835008 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.134401Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1966080 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.135228Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2097152 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.136064Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2228224 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.136869Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2359296 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.137675Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2490368 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.138569Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2621440 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.139377Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2752512 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.140200Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2883584 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.141030Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3014656 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.141858Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3145728 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.142700Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3276800 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.143510Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3407872 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.144309Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3538944 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.145225Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3670016 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.146053Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3801088 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.147043Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3932160 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.147969Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4063232 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.148788Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4194304 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.149588Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4325376 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.150689Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4456448 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.152060Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4587520 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.152938Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4718592 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.153526Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4849664 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.154109Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4980736 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.154702Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5111808 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.155534Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5242880 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.156468Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5373952 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.157292Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5505024 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.158077Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5636096 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.158863Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5767168 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.159665Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5898240 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.160436Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6029312 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.161365Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6160384 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.162149Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6291456 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.163138Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6422528 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.169520Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6459392 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.188855Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6590464 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.189681Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6721536 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.190516Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6852608 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.191333Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6983680 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.192516Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7114752 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.193301Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7245824 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.194085Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7376896 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.197019Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7507968 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.197839Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7639040 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.198645Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7770112 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.199468Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7901184 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.200251Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8032256 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.201049Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8163328 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.201829Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8294400 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.202618Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8425472 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.203347Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8556544 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.204108Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8687616 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.204885Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8818688 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.205658Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8949760 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.206427Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9080832 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.207261Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9211904 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.208048Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9342976 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.208822Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9474048 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.209599Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9605120 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.210379Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9736192 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.211158Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9867264 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.211956Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9998336 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.212722Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10129408 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.213506Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10260480 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.214285Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10391552 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.215068Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10522624 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.215840Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10653696 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.216657Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10784768 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.217432Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10915840 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.218247Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11046912 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.219043Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11177984 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.219818Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11309056 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.220596Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11440128 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.221364Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11571200 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.222076Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11702272 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.222858Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11833344 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.223640Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11964416 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.224430Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12095488 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.225200Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12226560 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.225985Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12357632 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.226823Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12488704 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.227606Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12619776 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.228385Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12750848 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.229193Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12881920 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.229997Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13012992 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.230755Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13144064 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.231528Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13275136 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.232314Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13406208 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.233102Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13537280 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.233878Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13668352 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.234668Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13799424 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.235452Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13930496 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.236229Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14061568 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.237072Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14192640 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.237844Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14323712 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.238624Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14454784 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.239394Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14585856 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.240175Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14716928 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.240953Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14848000 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.241732Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14979072 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.242447Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15110144 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.243231Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15241216 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.244002Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15372288 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.244780Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15503360 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.245566Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15634432 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.246345Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15765504 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.247181Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15896576 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.247952Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16027648 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.248798Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16158720 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.249581Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16289792 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.250359Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16420864 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.251140Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16551936 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.251946Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16683008 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.252724Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16814080 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.253492Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16945152 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.254272Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17076224 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.255050Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17207296 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.255829Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17338368 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.256609Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17469440 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.257428Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17600512 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.258204Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17731584 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.258977Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17862656 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.259751Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17993728 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.260518Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18124800 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.261299Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18255872 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.262073Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18386944 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.262860Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18518016 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.263642Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18649088 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.264410Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18780160 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.265183Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18911232 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.265959Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19042304 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.266737Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19173376 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.267565Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19304448 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.268347Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19435520 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.269127Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19566592 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.269903Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19697664 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.270679Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19828736 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.271454Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19959808 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.272225Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20090880 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.273003Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20221952 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.273779Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20353024 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.274546Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20484096 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.275486Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38924 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20615168 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:34:37.283210Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Common.xpr" @ 0 (handle=0x1450) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:10.632608Z  INFO cmd_exec:run_execution: xenia_rs: reached max instruction count limit=500000000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:10.635615Z  INFO cmd_exec: xenia_rs: in-memory trace log entries=0 path=sylpheed.iso
2026-05-10T10:35:10.636112Z  INFO cmd_exec: xenia_rs: exec complete wall_ms=36625 instructions=500000019 import_calls=5629636 unimplemented=0 path=sylpheed.iso
2026-05-10T10:35:10.648012Z  INFO xenia_rs::observability: metrics summary:
histogram xex.load_image_ms = count=1 sum=81.000 min=81.000 max=81.000 mean=81.000
counter xex.bytes_in = 3485696
counter xex.bytes_out = 9568256
counter kernel.calls{name=RtlImageXexHeaderField} = 2
counter kernel.calls{name=NtAllocateVirtualMemory} = 3
counter kernel.calls{name=KeGetCurrentProcessType} = 3
counter kernel.calls{name=RtlInitializeCriticalSection} = 29
counter kernel.calls{name=RtlEnterCriticalSection} = 889112
counter kernel.calls{name=RtlLeaveCriticalSection} = 889111
counter kernel.calls{name=XexCheckExecutablePrivilege} = 2
counter kernel.calls{name=XGetAVPack} = 1
counter kernel.calls{name=KeTlsAlloc} = 2
counter kernel.calls{name=KeTlsSetValue} = 2
counter kernel.calls{name=KeQuerySystemTime} = 2
counter kernel.calls{name=RtlInitializeCriticalSectionAndSpinCount} = 104
counter kernel.calls{name=MmAllocatePhysicalMemoryEx} = 17
counter kernel.calls{name=NtCreateEvent} = 395
counter kernel.calls{name=KeQueryPerformanceFrequency} = 6
counter kernel.calls{name=NtCreateFile} = 90
counter kernel.calls{name=NtReadFile} = 344
counter kernel.calls{name=NtClose} = 502
counter kernel.calls{name=XeCryptSha} = 1
counter kernel.calls{name=XeKeysConsolePrivateKeySign} = 1
counter kernel.calls{name=NtWriteFile} = 63
counter kernel.calls{name=RtlInitAnsiString} = 173
counter kernel.calls{name=NtOpenFile} = 51
counter kernel.calls{name=NtDeviceIoControlFile} = 2
counter kernel.calls{name=IoDismountVolumeByFileHandle} = 1
counter kernel.calls{name=NtQueryVolumeInformationFile} = 18
counter kernel.calls{name=KeEnterCriticalRegion} = 4
counter kernel.calls{name=XamTaskSchedule} = 1
counter scheduler.spawn.ok = 19
counter kernel.calls{name=XamTaskCloseHandle} = 1
counter kernel.calls{name=KeWaitForSingleObject} = 5
counter kernel.calls{name=StfsCreateDevice} = 1
counter kernel.calls{name=ObCreateSymbolicLink} = 1
counter kernel.calls{name=ExRegisterTitleTerminateNotification} = 3
counter kernel.calls{name=KeSetEvent} = 1
counter kernel.calls{name=KeResetEvent} = 1
counter kernel.calls{name=KeLeaveCriticalRegion} = 4
counter kernel.calls{name=RtlNtStatusToDosError} = 64
counter kernel.calls{name=ExCreateThread} = 18
counter kernel.calls{name=ObReferenceObjectByHandle} = 15
counter kernel.calls{name=KeSetAffinityThread} = 12
counter kernel.calls{name=ObDereferenceObject} = 17
counter kernel.calls{name=XamContentCreateEnumerator} = 1
counter kernel.calls{name=XamEnumerate} = 1
counter kernel.calls{name=NtWaitForSingleObjectEx} = 1489791
counter kernel.calls{name=NtCreateSemaphore} = 10
counter kernel.calls{name=NtQueryDirectoryFile} = 1
counter kernel.calls{name=NtQueryFullAttributesFile} = 16
counter kernel.calls{name=NtWaitForMultipleObjectsEx} = 865500
counter kernel.calls{name=NtDuplicateObject} = 36
counter kernel.calls{name=NtReleaseSemaphore} = 393
counter kernel.calls{name=NtQueryInformationFile} = 377
counter kernel.calls{name=NtSetInformationFile} = 60
counter kernel.calls{name=NtSetEvent} = 3334
counter kernel.calls{name=MmFreePhysicalMemory} = 12
counter kernel.calls{name=XamNotifyCreateListener} = 1
counter kernel.calls{name=VdInitializeEngines} = 2
counter kernel.calls{name=VdShutdownEngines} = 1
counter kernel.calls{name=VdSetGraphicsInterruptCallback} = 1
counter kernel.calls{name=ExGetXConfigSetting} = 3
counter kernel.calls{name=VdSetSystemCommandBufferGpuIdentifierAddress} = 2
counter kernel.calls{name=MmGetPhysicalAddress} = 1
counter kernel.calls{name=VdInitializeRingBuffer} = 1
counter kernel.calls{name=VdEnableRingBufferRPtrWriteBack} = 1
counter kernel.calls{name=KiApcNormalRoutineNop} = 1
counter kernel.calls{name=KeSetBasePriorityThread} = 3
counter kernel.calls{name=VdQueryVideoMode} = 2
counter kernel.calls{name=VdQueryVideoFlags} = 2
counter kernel.calls{name=VdCallGraphicsNotificationRoutines} = 1
counter kernel.calls{name=VdRetrainEDRAMWorker} = 1
counter kernel.calls{name=VdRetrainEDRAM} = 3
counter kernel.calls{name=VdIsHSIOTrainingSucceeded} = 1
counter kernel.calls{name=VdGetSystemCommandBuffer} = 2
counter kernel.calls{name=VdSwap} = 2
counter gpu.interrupt.delivered{source=1} = 2
counter kernel.calls{name=KeAcquireSpinLockAtRaisedIrql} = 28
counter kernel.calls{name=KeReleaseSpinLockFromRaisedIrql} = 28
counter kernel.calls{name=VdGetCurrentDisplayGamma} = 1
counter gpu.interrupt.delivered{source=0} = 3295
counter kernel.calls{name=VdSetDisplayMode} = 1
counter kernel.calls{name=VdGetCurrentDisplayInformation} = 1
counter kernel.calls{name=RtlFillMemoryUlong} = 1
counter kernel.calls{name=VdInitializeScalerCommandBuffer} = 1
counter kernel.calls{name=VdPersistDisplay} = 1
counter kernel.calls{name=NtResumeThread} = 6
counter kernel.calls{name=XGetGameRegion} = 2
counter kernel.calls{name=KeInitializeSemaphore} = 1
counter kernel.calls{name=KeResumeThread} = 2
counter kernel.calls{name=KeRaiseIrqlToDpcLevel} = 33
counter kernel.calls{name=KfLowerIrql} = 26
counter kernel.calls{name=XAudioRegisterRenderDriverClient} = 1
counter kernel.calls{name=ObLookupThreadByThreadId} = 2
counter kernel.calls{name=ObOpenObjectByPointer} = 2
counter kernel.calls{name=XNotifyPositionUI} = 1
counter kernel.calls{name=NtCreateTimer} = 1
counter kernel.calls{name=NtSetTimerEx} = 1
counter kernel.calls{name=XamInputGetCapabilities} = 8
counter kernel.calls{name=XNotifyGetNext} = 1489735
counter kernel.calls{name=XamUserGetSigninState} = 2
counter kernel.calls{name=XamUserGetXUID} = 1
counter kernel.calls{name=XamUserReadProfileSettings} = 2

View File

@@ -0,0 +1,694 @@
2026-05-10T10:35:10.665944Z  INFO cmd_exec:load_xex_data: xenia_rs: detected disc image, extracting default.xex path=sylpheed.iso path=sylpheed.iso
2026-05-10T10:35:10.667546Z  INFO cmd_exec: xenia_rs: XEX file format compression="normal (LZX)" encryption="normal (AES)" path=sylpheed.iso
2026-05-10T10:35:10.667571Z  INFO cmd_exec: xenia_rs: loading XEX entry=0x824ab748 base=0x82000000 path=sylpheed.iso
2026-05-10T10:35:10.764850Z  INFO cmd_exec:load_image:load_normal_compressed: xenia_xex::loader: LZX decompressed: 3428942 -> 9568256 bytes path=sylpheed.iso bytes=3497984 bytes_in=3485696
2026-05-10T10:35:10.765463Z  INFO cmd_exec:load_image: xenia_xex::loader: image loaded bytes_in=3485696 bytes_out=9568256 ratio=2.745005875440658 elapsed_ms=97.0 path=sylpheed.iso bytes=3497984
2026-05-10T10:35:10.770499Z  INFO cmd_exec: xenia_rs: import thunks mapped thunks=194 path=sylpheed.iso
2026-05-10T10:35:10.770799Z  INFO cmd_exec: xenia_rs: pc probes armed: 1 (0x822f1c00); consumer-snapshots: 0 path=sylpheed.iso
2026-05-10T10:35:10.771105Z  INFO cmd_exec: xenia_rs: starting execution limit=500000000 path=sylpheed.iso
2026-05-10T10:35:10.771150Z  INFO cmd_exec: xenia_rs: gpu: threaded backend — spawning worker thread path=sylpheed.iso
2026-05-10T10:35:10.777845Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x100000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:10.777905Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x10000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:10.778051Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=10 flags=0x00000400 result=1 lr=0x824ab598 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.116020Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x1008 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.116079Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x100c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.116423Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x1010 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.116891Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0/" err=File not found: Cache0/ handle=0x1014 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.116916Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=11 flags=0x00000400 result=0 lr=0x824a99a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.116942Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: args v1=0x02080002 v2=0x00000000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.116974Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=2 on hw=1 entry=0x824a93c8 start_ctx=0x828a28f0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.116985Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: tid=2 handle=0x1018 hw=1 callback=0x824a93c8 message=0x828a28f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.117150Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x101c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.117162Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x4acc5000 size=0xff000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.117312Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=3 on hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.117321Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=3 handle=0x1024 hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.118294Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x102c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.118398Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=4 on hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.118407Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=4 handle=0x1030 hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.118459Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1034 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.118584Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/access" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.118619Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.118648Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/recent" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.119009Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="config.ini" size=400 handle=0x1038 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.119146Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=5 on hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.119153Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=5 handle=0x1048 hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.119495Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 400 bytes from "config.ini" @ 0 (handle=0x1038) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.120329Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615e46ee8ca.tmp" host="/tmp/xenia-rs-cache-582733-0/d4ea4615e46ee8ca.tmp" disp=3 size=0 handle=0x1050 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.120394Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 400 bytes to "cache:/d4ea4615e46ee8ca.tmp" @ 0 (handle=0x1050) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.120449Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1054 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.120571Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/access" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.120596Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.120614Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/recent" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.120801Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615" host="/tmp/xenia-rs-cache-582733-0/d4ea4615" disp=2 size=0 handle=0x1058 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.120833Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582733-0/d4ea4615") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.120862Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615e46ee8ca.tmp" host="/tmp/xenia-rs-cache-582733-0/d4ea4615e46ee8ca.tmp" disp=1 size=400 handle=0x105c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.125753Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="dat/files.tbl" err=File not found: dat/files.tbl handle=0x1060 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.128687Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.pak" size=964 handle=0x106c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.129231Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 964 bytes from "dat/tables.pak" @ 0 (handle=0x106c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.130423Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45ce534ffea.tmp" host="/tmp/xenia-rs-cache-582733-0/69d8e45ce534ffea.tmp" disp=3 size=0 handle=0x1074 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.130478Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 964 bytes to "cache:/69d8e45ce534ffea.tmp" @ 0 (handle=0x1074) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.130529Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1078 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.130809Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582733-0/access" disp=5 size=0 handle=0x107c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.130846Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 12 bytes to "cache:/access" @ 0 (handle=0x107c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.130884Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.130954Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582733-0/recent" disp=5 size=0 handle=0x1080 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.130982Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 8 bytes to "cache:/recent" @ 0 (handle=0x1080) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.131201Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c" host="/tmp/xenia-rs-cache-582733-0/69d8e45c" disp=2 size=0 handle=0x1084 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.131230Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582733-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.131254Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45ce534ffea.tmp" host="/tmp/xenia-rs-cache-582733-0/69d8e45ce534ffea.tmp" disp=1 size=964 handle=0x1088 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.132905Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.p00" size=435498 handle=0x1090 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.133262Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 206848 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.133754Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=6 on hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.133765Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=6 handle=0x10a8 hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.134598Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c9355f2f8.tmp" host="/tmp/xenia-rs-cache-582733-0/69d8e45c9355f2f8.tmp" disp=3 size=0 handle=0x10ac path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.134694Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/69d8e45c9355f2f8.tmp" @ 0 (handle=0x10ac) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.134773Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x10b0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.135390Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582733-0/access" disp=5 size=0 handle=0x10b4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.135470Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 24 bytes to "cache:/access" @ 0 (handle=0x10b4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.135543Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.135663Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582733-0/recent" disp=5 size=0 handle=0x10b8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.135751Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 16 bytes to "cache:/recent" @ 0 (handle=0x10b8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.136092Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.136253Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582733-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.136307Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c9355f2f8.tmp" host="/tmp/xenia-rs-cache-582733-0/69d8e45c9355f2f8.tmp" disp=1 size=2048 handle=0x10bc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.142105Z  INFO cmd_exec:run_execution: xenia_kernel::exports: VdSetGraphicsInterruptCallback(0x824be9a0, 0x4244df00) — callback armed path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.142274Z  INFO xenia_gpu::gpu_system: gpu: ring initialized base=0x0adcc000 size_bytes=4096 size_dwords=1024
2026-05-10T10:35:11.142288Z  INFO xenia_gpu::gpu_system: gpu: rptr writeback enabled addr=0x008619fc block_dwords=64
2026-05-10T10:35:11.142313Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=7 on hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false pri=0 mask=0x04 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:11.142323Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=7 handle=0x10cc hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false aff=0x04 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.044379Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=1 fb=0x0b1d8000 width=1280 height=720
2026-05-10T10:35:12.082590Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=8 on hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.082613Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=8 handle=0x10d8 hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.084567Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/tables.p00" @ 86016 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.085979Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3a2c8c185.tmp" host="/tmp/xenia-rs-cache-582733-0/aab216c3a2c8c185.tmp" disp=3 size=0 handle=0x10ec path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.086188Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 102400 bytes to "cache:/aab216c3a2c8c185.tmp" @ 0 (handle=0x10ec) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.086294Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x10f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.087074Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582733-0/access" disp=5 size=0 handle=0x10f4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.087136Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 36 bytes to "cache:/access" @ 0 (handle=0x10f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.087225Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.087336Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582733-0/recent" disp=5 size=0 handle=0x10f8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.087396Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 24 bytes to "cache:/recent" @ 0 (handle=0x10f8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.087855Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3" host="/tmp/xenia-rs-cache-582733-0/aab216c3" disp=2 size=0 handle=0x10fc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.087913Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582733-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.087967Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3a2c8c185.tmp" host="/tmp/xenia-rs-cache-582733-0/aab216c3a2c8c185.tmp" disp=1 size=102400 handle=0x1100 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.392653Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.pak" size=114244 handle=0x1108 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.393148Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 114244 bytes from "dat/sound.pak" @ 0 (handle=0x1108) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.398363Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c939a9dcc.tmp" host="/tmp/xenia-rs-cache-582733-0/69d8e45c939a9dcc.tmp" disp=3 size=0 handle=0x1110 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.398577Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 114244 bytes to "cache:/69d8e45c939a9dcc.tmp" @ 0 (handle=0x1110) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.398663Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1114 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.399072Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582733-0/access" disp=5 size=0 handle=0x1118 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.399134Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 48 bytes to "cache:/access" @ 0 (handle=0x1118) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.399195Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.399311Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582733-0/recent" disp=5 size=0 handle=0x111c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.399387Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 32 bytes to "cache:/recent" @ 0 (handle=0x111c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.399665Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.399721Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582733-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.399773Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c939a9dcc.tmp" host="/tmp/xenia-rs-cache-582733-0/69d8e45c939a9dcc.tmp" disp=1 size=114244 handle=0x1120 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.416496Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.p04" size=14903296 handle=0x1128 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.416931Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/sound.p04" @ 5931008 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.418292Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c973a5c0a.tmp" host="/tmp/xenia-rs-cache-582733-0/69d8e45c973a5c0a.tmp" disp=3 size=0 handle=0x1138 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.418370Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/69d8e45c973a5c0a.tmp" @ 0 (handle=0x1138) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.418428Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x113c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.419251Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582733-0/access" disp=5 size=0 handle=0x1140 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.419319Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 60 bytes to "cache:/access" @ 0 (handle=0x1140) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.419391Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.419607Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582733-0/recent" disp=5 size=0 handle=0x1144 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.419680Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 40 bytes to "cache:/recent" @ 0 (handle=0x1144) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.420030Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.420082Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582733-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.420158Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c973a5c0a.tmp" host="/tmp/xenia-rs-cache-582733-0/69d8e45c973a5c0a.tmp" disp=1 size=2048 handle=0x1148 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.483722Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=9 on hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true pri=0 mask=0x10 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.483746Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=9 handle=0x114c hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true aff=0x10 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.483784Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=10 on hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true pri=0 mask=0x20 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.483790Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=10 handle=0x1150 hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true aff=0x20 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.484198Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XAudioRegisterRenderDriverClient: index=0 callback=0x824d6640 arg=0x41e9dd5c wrapped=0x4b9f0000 driver=0x41550000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.580338Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 5933056 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.580634Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6064128 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.580876Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6195200 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.581111Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6326272 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.581348Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6457344 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.581595Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6588416 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.581897Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6719488 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.582135Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6850560 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.582368Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6981632 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.582609Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7112704 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.582849Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7243776 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.583179Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7374848 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.583401Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7505920 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.583625Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7636992 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.583913Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7768064 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.584191Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7899136 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.584425Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8030208 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.584666Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8161280 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.584906Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8292352 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.585284Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8423424 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.585538Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8554496 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.586498Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8685568 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.586996Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8816640 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.587404Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8947712 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.587726Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9078784 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.588040Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9209856 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.588350Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9340928 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.589040Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9472000 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.589268Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9603072 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.591565Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9734144 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.591800Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9865216 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.592108Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9996288 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.592370Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10127360 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.592679Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10258432 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.592996Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10389504 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.593267Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10520576 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.593540Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10651648 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.593784Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10782720 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.594018Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10913792 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.594293Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11044864 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.594527Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11175936 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.594766Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11307008 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.595001Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11438080 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.595263Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11569152 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.595544Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11700224 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.595786Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11831296 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.596022Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11962368 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.596264Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12093440 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.596540Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12224512 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.596780Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12355584 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.597015Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12486656 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.597250Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12617728 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.597557Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12748800 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.597858Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12879872 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.598447Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13010944 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.598691Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13142016 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.598929Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13273088 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.599164Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13404160 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.599508Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13535232 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.599862Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13666304 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.600140Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13797376 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.600381Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13928448 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.600631Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14059520 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.600845Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14190592 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.601054Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14321664 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.601272Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14452736 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.601485Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14583808 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.601752Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14714880 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.601993Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 57344 bytes from "dat/sound.p04" @ 14845952 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.605953Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=11 on hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.606003Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=11 handle=0x1270 hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.606523Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=12 on hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.606577Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=12 handle=0x127c hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.608923Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 77824 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.610180Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c35ee70e0a.tmp" host="/tmp/xenia-rs-cache-582733-0/aab216c35ee70e0a.tmp" disp=3 size=0 handle=0x1294 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.610386Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/aab216c35ee70e0a.tmp" @ 0 (handle=0x1294) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.610505Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1298 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.611318Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582733-0/access" disp=5 size=0 handle=0x129c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.611393Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 72 bytes to "cache:/access" @ 0 (handle=0x129c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.611477Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.611618Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582733-0/recent" disp=5 size=0 handle=0x12a0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.611685Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 48 bytes to "cache:/recent" @ 0 (handle=0x12a0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.612193Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/aab216c3" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.612257Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582733-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.612320Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c35ee70e0a.tmp" host="/tmp/xenia-rs-cache-582733-0/aab216c35ee70e0a.tmp" disp=1 size=2048 handle=0x12a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.613556Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=13 on hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.613591Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=13 handle=0x12a8 hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.613742Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=14 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.613774Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=14 handle=0x12b0 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.613847Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=15 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.613878Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=15 handle=0x12b4 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.620543Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Base.xpr" size=8507404 handle=0x12bc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.623993Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.pak" size=208 handle=0x12c8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.624513Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 208 bytes from "dat/GP_TITLE.pak" @ 0 (handle=0x12c8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.625666Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45cc295ead8.tmp" host="/tmp/xenia-rs-cache-582733-0/69d8e45cc295ead8.tmp" disp=3 size=0 handle=0x12d0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.625766Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 208 bytes to "cache:/69d8e45cc295ead8.tmp" @ 0 (handle=0x12d0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.625852Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x12d4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.626575Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582733-0/access" disp=5 size=0 handle=0x12d8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.626644Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 84 bytes to "cache:/access" @ 0 (handle=0x12d8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.626739Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.626864Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582733-0/recent" disp=5 size=0 handle=0x12dc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.626927Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 56 bytes to "cache:/recent" @ 0 (handle=0x12dc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.627229Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.627286Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582733-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.627341Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45cc295ead8.tmp" host="/tmp/xenia-rs-cache-582733-0/69d8e45cc295ead8.tmp" disp=1 size=208 handle=0x12e0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.628544Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.629887Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.640392Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.p00" size=12283578 handle=0x12f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.655414Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/ptc_pack.xpr" size=20654092 handle=0x12f4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.662073Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 131072 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.664339Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 262144 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.664807Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 393216 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.665224Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 524288 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.665774Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 655360 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.666145Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 786432 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.666722Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 917504 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.667253Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1048576 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.667695Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1179648 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.668037Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1310720 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.668423Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1441792 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.669026Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1572864 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.669482Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1703936 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.677048Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1832960 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.683497Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1964032 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.683738Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2095104 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.684898Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2226176 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.685161Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2357248 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.685435Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2488320 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.685753Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2619392 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.686037Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2750464 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.686381Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2881536 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.686697Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3012608 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.687275Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3143680 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.687693Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3274752 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.687924Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3405824 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.688831Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3536896 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.689646Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3667968 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.689895Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3799040 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.690233Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3930112 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.690470Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4061184 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.690764Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4192256 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.690991Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4323328 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.691248Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4454400 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.691483Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4585472 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.691779Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4716544 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.692024Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4847616 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.692347Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4978688 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.692661Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5109760 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.693900Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5240832 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.694153Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5371904 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.694424Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5502976 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.694697Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5634048 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.695434Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5765120 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.695691Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5896192 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.695949Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6027264 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.696227Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6158336 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.696506Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6289408 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.696791Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6420480 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.697044Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6551552 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.697290Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6682624 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.697577Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6813696 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.697834Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6944768 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.698330Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7075840 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.698608Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7206912 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.698859Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7337984 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.699111Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7469056 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.699352Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7600128 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.699718Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7731200 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.700040Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7862272 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.700304Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7993344 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.700730Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8124416 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.700944Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8255488 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.701284Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 120844 bytes from "hidden/Resource3D/Base.xpr" @ 8386560 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.707033Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 51200 bytes from "dat/GP_TITLE.p00" @ 0 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.710328Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cdba806e.tmp" host="/tmp/xenia-rs-cache-582733-0/87719002cdba806e.tmp" disp=3 size=0 handle=0x1430 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.710472Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 49530 bytes to "cache:/87719002cdba806e.tmp" @ 0 (handle=0x1430) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.710523Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1434 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.711065Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582733-0/access" disp=5 size=0 handle=0x1438 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.711094Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 96 bytes to "cache:/access" @ 0 (handle=0x1438) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.711128Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.711200Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582733-0/recent" disp=5 size=0 handle=0x143c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.711225Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 64 bytes to "cache:/recent" @ 0 (handle=0x143c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.711730Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002" host="/tmp/xenia-rs-cache-582733-0/87719002" disp=2 size=0 handle=0x1440 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.711765Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582733-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.711794Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cdba806e.tmp" host="/tmp/xenia-rs-cache-582733-0/87719002cdba806e.tmp" disp=1 size=49530 handle=0x1444 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.712440Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.713142Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 51200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.716572Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Common.xpr" size=593932 handle=0x1450 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.721753Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/GP_TITLE.p00" @ 182272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.733156Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cec0a96e.tmp" host="/tmp/xenia-rs-cache-582733-0/87719002cec0a96e.tmp" disp=3 size=0 handle=0x145c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.733375Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 232205 bytes to "cache:/87719002cec0a96e.tmp" @ 0 (handle=0x145c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.733428Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1460 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.733995Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582733-0/access" disp=5 size=0 handle=0x1464 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.734038Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 108 bytes to "cache:/access" @ 0 (handle=0x1464) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.734082Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.734161Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582733-0/recent" disp=5 size=0 handle=0x1468 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.734188Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 72 bytes to "cache:/recent" @ 0 (handle=0x1468) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.734373Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.734393Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582733-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.734416Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cec0a96e.tmp" host="/tmp/xenia-rs-cache-582733-0/87719002cec0a96e.tmp" disp=1 size=232205 handle=0x146c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.734907Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 507904 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.744039Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 638976 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.744316Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 770048 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.744593Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 901120 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.744891Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1032192 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.745180Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1163264 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.745495Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1294336 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.745723Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1425408 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.745934Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1556480 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.746145Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1687552 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.746352Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1818624 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.746560Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1949696 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.746764Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2080768 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.746966Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2211840 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.747168Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2342912 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.747374Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2473984 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.747626Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2605056 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.747843Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2736128 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.748050Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2867200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.748258Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2998272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.748508Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 100352 bytes from "dat/GP_TITLE.p00" @ 3129344 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.849091Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a60fcb85.tmp" host="/tmp/xenia-rs-cache-582733-0/87719002a60fcb85.tmp" disp=3 size=0 handle=0x14c4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.850897Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2721352 bytes to "cache:/87719002a60fcb85.tmp" @ 0 (handle=0x14c4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.851077Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x14c8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.851824Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582733-0/access" disp=5 size=0 handle=0x14cc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.851894Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 120 bytes to "cache:/access" @ 0 (handle=0x14cc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.851953Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.852057Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582733-0/recent" disp=5 size=0 handle=0x14d0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.852110Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 80 bytes to "cache:/recent" @ 0 (handle=0x14d0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.852322Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.852397Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582733-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.852447Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a60fcb85.tmp" host="/tmp/xenia-rs-cache-582733-0/87719002a60fcb85.tmp" disp=1 size=2721352 handle=0x14d4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.853169Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "dat/GP_TITLE.p00" @ 468992 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.855512Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002285d8849.tmp" host="/tmp/xenia-rs-cache-582733-0/87719002285d8849.tmp" disp=3 size=0 handle=0x14dc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.855619Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 38706 bytes to "cache:/87719002285d8849.tmp" @ 0 (handle=0x14dc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.855694Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x14e0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.856414Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582733-0/access" disp=5 size=0 handle=0x14e4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.856476Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 132 bytes to "cache:/access" @ 0 (handle=0x14e4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.856538Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.856656Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582733-0/recent" disp=5 size=0 handle=0x14e8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.856712Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 88 bytes to "cache:/recent" @ 0 (handle=0x14e8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.856961Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.857014Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582733-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.857065Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002285d8849.tmp" host="/tmp/xenia-rs-cache-582733-0/87719002285d8849.tmp" disp=1 size=38706 handle=0x14ec path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.857843Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3229696 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.863461Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3360768 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.863768Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3491840 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.864012Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3622912 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.864271Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3753984 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.864582Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3885056 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.864903Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4016128 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.865224Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4147200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.865545Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4278272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.865812Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4409344 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.866038Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 88064 bytes from "dat/GP_TITLE.p00" @ 4540416 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.924342Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a715f485.tmp" host="/tmp/xenia-rs-cache-582733-0/87719002a715f485.tmp" disp=3 size=0 handle=0x151c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.924775Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 1398049 bytes to "cache:/87719002a715f485.tmp" @ 0 (handle=0x151c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.924883Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1520 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.925617Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582733-0/access" disp=5 size=0 handle=0x1524 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.925680Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 144 bytes to "cache:/access" @ 0 (handle=0x1524) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.925742Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.925866Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582733-0/recent" disp=5 size=0 handle=0x1528 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.925924Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 96 bytes to "cache:/recent" @ 0 (handle=0x1528) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.926144Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.926170Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582733-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.926198Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a715f485.tmp" host="/tmp/xenia-rs-cache-582733-0/87719002a715f485.tmp" disp=1 size=1398049 handle=0x152c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.927461Z  INFO cmd_exec:run_execution: xenia_rs: HW thread returned to LR sentinel — marking exited hw_id=1 tid=Some(12) is_main=false cycle=18592099 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.929173Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 116736 bytes from "dat/GP_TITLE.p00" @ 284672 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.929227Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=16 on hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.929240Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=16 handle=0x153c hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.932321Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=17 on hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.932367Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=17 handle=0x154c hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.939039Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cf2a8ccd.tmp" host="/tmp/xenia-rs-cache-582733-0/87719002cf2a8ccd.tmp" disp=3 size=0 handle=0x1558 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.939190Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 115604 bytes to "cache:/87719002cf2a8ccd.tmp" @ 0 (handle=0x1558) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.939285Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x155c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.941520Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582733-0/access" disp=5 size=0 handle=0x1560 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.941571Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 156 bytes to "cache:/access" @ 0 (handle=0x1560) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.941651Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.941887Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=18 on hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.941897Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=18 handle=0x1570 hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.941969Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582733-0/recent" disp=5 size=0 handle=0x1574 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.942008Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 104 bytes to "cache:/recent" @ 0 (handle=0x1574) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.942111Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=19 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.942120Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=19 handle=0x1580 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.942221Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=20 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.942230Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=20 handle=0x1588 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.942744Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.942775Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582733-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.942808Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cf2a8ccd.tmp" host="/tmp/xenia-rs-cache-582733-0/87719002cf2a8ccd.tmp" disp=1 size=115604 handle=0x158c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:12.944923Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 67584 bytes from "dat/GP_TITLE.p00" @ 401408 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.845834Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=2 fb=0x0b1d8000 width=1280 height=720
2026-05-10T10:35:13.860220Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/8771900201a2db9c.tmp" host="/tmp/xenia-rs-cache-582733-0/8771900201a2db9c.tmp" disp=3 size=0 handle=0x1594 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.860361Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 66079 bytes to "cache:/8771900201a2db9c.tmp" @ 0 (handle=0x1594) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.860446Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1598 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.863220Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-582733-0/access" disp=5 size=0 handle=0x159c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.863266Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 168 bytes to "cache:/access" @ 0 (handle=0x159c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.863354Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.864448Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-582733-0/recent" disp=5 size=0 handle=0x15a0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.864521Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 112 bytes to "cache:/recent" @ 0 (handle=0x15a0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.865352Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.865386Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-582733-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.865424Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/8771900201a2db9c.tmp" host="/tmp/xenia-rs-cache-582733-0/8771900201a2db9c.tmp" disp=1 size=66079 handle=0x15a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.868863Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.892322Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 131072 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.893246Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 262144 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.893982Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 393216 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.894754Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 524288 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.895691Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 655360 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.896504Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 786432 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.897365Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 917504 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.898140Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1048576 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.898910Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1179648 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.899714Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1310720 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.900445Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1441792 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.901217Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1572864 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.902031Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1703936 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.903953Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1835008 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.904865Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1966080 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.905649Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2097152 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.906868Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2228224 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.907639Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2359296 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.908400Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2490368 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.909184Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2621440 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.910094Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2752512 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.910849Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2883584 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.911600Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3014656 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.912346Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3145728 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.913110Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3276800 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.913878Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3407872 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.914726Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3538944 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.915565Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3670016 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.916364Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3801088 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.917197Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3932160 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.917970Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4063232 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.918743Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4194304 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.919541Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4325376 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.920321Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4456448 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.921142Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4587520 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.921927Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4718592 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.925675Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4849664 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.926740Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4980736 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.927563Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5111808 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.929018Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5242880 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.930091Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5373952 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.931502Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5505024 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.933099Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5636096 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.933926Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5767168 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.934742Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5898240 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.935612Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6029312 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.936477Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6160384 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.937334Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6291456 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.938398Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6422528 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.945561Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6459392 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.963496Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6590464 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.964259Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6721536 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.965650Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6852608 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.966479Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6983680 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.967415Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7114752 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.968239Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7245824 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.969071Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7376896 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.970219Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7507968 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.971126Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7639040 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.972029Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7770112 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.972813Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7901184 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.973928Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8032256 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.974747Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8163328 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.975699Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8294400 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.976804Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8425472 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.977697Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8556544 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.978718Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8687616 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.979534Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8818688 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.980386Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8949760 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.981299Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9080832 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.982080Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9211904 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.983113Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9342976 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.984122Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9474048 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.985371Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9605120 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.986198Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9736192 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.987028Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9867264 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.988066Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9998336 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.988923Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10129408 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.990412Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10260480 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.991287Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10391552 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.992331Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10522624 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.993222Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10653696 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.994431Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10784768 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.995291Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10915840 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.996217Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11046912 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.997005Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11177984 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.997839Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11309056 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.998657Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11440128 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:13.999476Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11571200 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.000276Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11702272 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.001203Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11833344 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.002346Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11964416 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.003205Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12095488 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.004123Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12226560 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.005004Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12357632 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.006064Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12488704 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.007038Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12619776 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.007925Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12750848 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.008715Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12881920 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.009593Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13012992 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.010431Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13144064 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.011719Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13275136 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.012544Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13406208 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.013403Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13537280 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.014202Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13668352 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.015005Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13799424 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.015934Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13930496 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.017211Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14061568 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.018030Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14192640 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.018971Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14323712 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.020061Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14454784 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.021097Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14585856 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.022085Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14716928 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.022912Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14848000 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.023750Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14979072 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.024984Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15110144 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.025800Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15241216 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.027054Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15372288 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.027943Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15503360 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.028795Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15634432 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.029710Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15765504 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.030604Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15896576 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.031404Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16027648 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.033107Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16158720 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.034066Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16289792 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.034694Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16420864 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.035283Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16551936 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.035892Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16683008 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.036638Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16814080 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.037480Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16945152 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.038255Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17076224 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.038899Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17207296 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.039541Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17338368 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.040157Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17469440 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.040788Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17600512 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.041687Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17731584 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.042599Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17862656 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.043666Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17993728 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.044655Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18124800 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.045366Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18255872 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.046210Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18386944 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.046793Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18518016 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.047938Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18649088 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.048704Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18780160 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.049942Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18911232 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.051998Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19042304 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.052635Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19173376 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.053193Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19304448 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.053865Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19435520 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.054527Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19566592 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.055102Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19697664 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.055780Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19828736 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.056537Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19959808 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.058435Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20090880 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.059043Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20221952 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.059643Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20353024 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.060236Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20484096 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.060863Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38924 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20615168 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:14.070501Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Common.xpr" @ 0 (handle=0x1450) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.368451Z  INFO cmd_exec:run_execution: xenia_rs: reached max instruction count limit=500000000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.370566Z  INFO cmd_exec: xenia_rs: in-memory trace log entries=0 path=sylpheed.iso
2026-05-10T10:35:44.370809Z  INFO cmd_exec: xenia_rs: exec complete wall_ms=33704 instructions=500000019 import_calls=5629636 unimplemented=0 path=sylpheed.iso
2026-05-10T10:35:44.383388Z  INFO xenia_rs::observability: metrics summary:
histogram xex.load_image_ms = count=1 sum=97.000 min=97.000 max=97.000 mean=97.000
counter xex.bytes_in = 3485696
counter xex.bytes_out = 9568256
counter kernel.calls{name=RtlImageXexHeaderField} = 2
counter kernel.calls{name=NtAllocateVirtualMemory} = 3
counter kernel.calls{name=KeGetCurrentProcessType} = 3
counter kernel.calls{name=RtlInitializeCriticalSection} = 29
counter kernel.calls{name=RtlEnterCriticalSection} = 889112
counter kernel.calls{name=RtlLeaveCriticalSection} = 889111
counter kernel.calls{name=XexCheckExecutablePrivilege} = 2
counter kernel.calls{name=XGetAVPack} = 1
counter kernel.calls{name=KeTlsAlloc} = 2
counter kernel.calls{name=KeTlsSetValue} = 2
counter kernel.calls{name=KeQuerySystemTime} = 2
counter kernel.calls{name=RtlInitializeCriticalSectionAndSpinCount} = 104
counter kernel.calls{name=MmAllocatePhysicalMemoryEx} = 17
counter kernel.calls{name=NtCreateEvent} = 395
counter kernel.calls{name=KeQueryPerformanceFrequency} = 6
counter kernel.calls{name=NtCreateFile} = 90
counter kernel.calls{name=NtReadFile} = 344
counter kernel.calls{name=NtClose} = 502
counter kernel.calls{name=XeCryptSha} = 1
counter kernel.calls{name=XeKeysConsolePrivateKeySign} = 1
counter kernel.calls{name=NtWriteFile} = 63
counter kernel.calls{name=RtlInitAnsiString} = 173
counter kernel.calls{name=NtOpenFile} = 51
counter kernel.calls{name=NtDeviceIoControlFile} = 2
counter kernel.calls{name=IoDismountVolumeByFileHandle} = 1
counter kernel.calls{name=NtQueryVolumeInformationFile} = 18
counter kernel.calls{name=KeEnterCriticalRegion} = 4
counter kernel.calls{name=XamTaskSchedule} = 1
counter scheduler.spawn.ok = 19
counter kernel.calls{name=XamTaskCloseHandle} = 1
counter kernel.calls{name=KeWaitForSingleObject} = 5
counter kernel.calls{name=StfsCreateDevice} = 1
counter kernel.calls{name=ObCreateSymbolicLink} = 1
counter kernel.calls{name=ExRegisterTitleTerminateNotification} = 3
counter kernel.calls{name=KeSetEvent} = 1
counter kernel.calls{name=KeResetEvent} = 1
counter kernel.calls{name=KeLeaveCriticalRegion} = 4
counter kernel.calls{name=RtlNtStatusToDosError} = 64
counter kernel.calls{name=ExCreateThread} = 18
counter kernel.calls{name=ObReferenceObjectByHandle} = 15
counter kernel.calls{name=KeSetAffinityThread} = 12
counter kernel.calls{name=ObDereferenceObject} = 17
counter kernel.calls{name=XamContentCreateEnumerator} = 1
counter kernel.calls{name=XamEnumerate} = 1
counter kernel.calls{name=NtWaitForSingleObjectEx} = 1489791
counter kernel.calls{name=NtCreateSemaphore} = 10
counter kernel.calls{name=NtQueryDirectoryFile} = 1
counter kernel.calls{name=NtQueryFullAttributesFile} = 16
counter kernel.calls{name=NtWaitForMultipleObjectsEx} = 865500
counter kernel.calls{name=NtDuplicateObject} = 36
counter kernel.calls{name=NtReleaseSemaphore} = 393
counter kernel.calls{name=NtQueryInformationFile} = 377
counter kernel.calls{name=NtSetInformationFile} = 60
counter kernel.calls{name=NtSetEvent} = 3334
counter kernel.calls{name=MmFreePhysicalMemory} = 12
counter kernel.calls{name=XamNotifyCreateListener} = 1
counter kernel.calls{name=VdInitializeEngines} = 2
counter kernel.calls{name=VdShutdownEngines} = 1
counter kernel.calls{name=VdSetGraphicsInterruptCallback} = 1
counter kernel.calls{name=ExGetXConfigSetting} = 3
counter kernel.calls{name=VdSetSystemCommandBufferGpuIdentifierAddress} = 2
counter kernel.calls{name=MmGetPhysicalAddress} = 1
counter kernel.calls{name=VdInitializeRingBuffer} = 1
counter kernel.calls{name=VdEnableRingBufferRPtrWriteBack} = 1
counter kernel.calls{name=KiApcNormalRoutineNop} = 1
counter kernel.calls{name=KeSetBasePriorityThread} = 3
counter kernel.calls{name=VdQueryVideoMode} = 2
counter kernel.calls{name=VdQueryVideoFlags} = 2
counter kernel.calls{name=VdCallGraphicsNotificationRoutines} = 1
counter kernel.calls{name=VdRetrainEDRAMWorker} = 1
counter kernel.calls{name=VdRetrainEDRAM} = 3
counter kernel.calls{name=VdIsHSIOTrainingSucceeded} = 1
counter kernel.calls{name=VdGetSystemCommandBuffer} = 2
counter kernel.calls{name=VdSwap} = 2
counter gpu.interrupt.delivered{source=1} = 2
counter kernel.calls{name=KeAcquireSpinLockAtRaisedIrql} = 28
counter kernel.calls{name=KeReleaseSpinLockFromRaisedIrql} = 28
counter kernel.calls{name=VdGetCurrentDisplayGamma} = 1
counter gpu.interrupt.delivered{source=0} = 3295
counter kernel.calls{name=VdSetDisplayMode} = 1
counter kernel.calls{name=VdGetCurrentDisplayInformation} = 1
counter kernel.calls{name=RtlFillMemoryUlong} = 1
counter kernel.calls{name=VdInitializeScalerCommandBuffer} = 1
counter kernel.calls{name=VdPersistDisplay} = 1
counter kernel.calls{name=NtResumeThread} = 6
counter kernel.calls{name=XGetGameRegion} = 2
counter kernel.calls{name=KeInitializeSemaphore} = 1
counter kernel.calls{name=KeResumeThread} = 2
counter kernel.calls{name=KeRaiseIrqlToDpcLevel} = 33
counter kernel.calls{name=KfLowerIrql} = 26
counter kernel.calls{name=XAudioRegisterRenderDriverClient} = 1
counter kernel.calls{name=ObLookupThreadByThreadId} = 2
counter kernel.calls{name=ObOpenObjectByPointer} = 2
counter kernel.calls{name=XNotifyPositionUI} = 1
counter kernel.calls{name=NtCreateTimer} = 1
counter kernel.calls{name=NtSetTimerEx} = 1
counter kernel.calls{name=XamInputGetCapabilities} = 8
counter kernel.calls{name=XNotifyGetNext} = 1489735
counter kernel.calls{name=XamUserGetSigninState} = 2
counter kernel.calls{name=XamUserGetXUID} = 1
counter kernel.calls{name=XamUserReadProfileSettings} = 2

View File

@@ -0,0 +1,694 @@
2026-05-10T10:35:44.397447Z  INFO cmd_exec:load_xex_data: xenia_rs: detected disc image, extracting default.xex path=sylpheed.iso path=sylpheed.iso
2026-05-10T10:35:44.399133Z  INFO cmd_exec: xenia_rs: XEX file format compression="normal (LZX)" encryption="normal (AES)" path=sylpheed.iso
2026-05-10T10:35:44.399149Z  INFO cmd_exec: xenia_rs: loading XEX entry=0x824ab748 base=0x82000000 path=sylpheed.iso
2026-05-10T10:35:44.500649Z  INFO cmd_exec:load_image:load_normal_compressed: xenia_xex::loader: LZX decompressed: 3428942 -> 9568256 bytes path=sylpheed.iso bytes=3497984 bytes_in=3485696
2026-05-10T10:35:44.501292Z  INFO cmd_exec:load_image: xenia_xex::loader: image loaded bytes_in=3485696 bytes_out=9568256 ratio=2.745005875440658 elapsed_ms=102.0 path=sylpheed.iso bytes=3497984
2026-05-10T10:35:44.507222Z  INFO cmd_exec: xenia_rs: import thunks mapped thunks=194 path=sylpheed.iso
2026-05-10T10:35:44.507976Z  INFO cmd_exec: xenia_rs: pc probes armed: 1 (0x822f1d58); consumer-snapshots: 0 path=sylpheed.iso
2026-05-10T10:35:44.508225Z  INFO cmd_exec: xenia_rs: starting execution limit=500000000 path=sylpheed.iso
2026-05-10T10:35:44.508266Z  INFO cmd_exec: xenia_rs: gpu: threaded backend — spawning worker thread path=sylpheed.iso
2026-05-10T10:35:44.515045Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x100000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.515076Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x10000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.515165Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=10 flags=0x00000400 result=1 lr=0x824ab598 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.865836Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x1008 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.865939Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x100c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.866373Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x1010 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.866854Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0/" err=File not found: Cache0/ handle=0x1014 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.866913Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=11 flags=0x00000400 result=0 lr=0x824a99a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.866975Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: args v1=0x02080002 v2=0x00000000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.867042Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=2 on hw=1 entry=0x824a93c8 start_ctx=0x828a28f0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.867088Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: tid=2 handle=0x1018 hw=1 callback=0x824a93c8 message=0x828a28f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.867313Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x101c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.867381Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x4acc5000 size=0xff000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.867571Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=3 on hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.867618Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=3 handle=0x1024 hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.868527Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x102c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.868606Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=4 on hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.868650Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=4 handle=0x1030 hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.868749Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1034 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.868903Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/access" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.868987Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.869066Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/recent" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.869544Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="config.ini" size=400 handle=0x1038 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.869788Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=5 on hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.869848Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=5 handle=0x1048 hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.870420Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 400 bytes from "config.ini" @ 0 (handle=0x1038) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.871683Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615e46ee8ca.tmp" host="/tmp/xenia-rs-cache-583013-0/d4ea4615e46ee8ca.tmp" disp=3 size=0 handle=0x1050 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.871817Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 400 bytes to "cache:/d4ea4615e46ee8ca.tmp" @ 0 (handle=0x1050) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.871977Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1054 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.872505Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/access" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.872532Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.872558Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/recent" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.872827Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615" host="/tmp/xenia-rs-cache-583013-0/d4ea4615" disp=2 size=0 handle=0x1058 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.872856Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583013-0/d4ea4615") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.872895Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615e46ee8ca.tmp" host="/tmp/xenia-rs-cache-583013-0/d4ea4615e46ee8ca.tmp" disp=1 size=400 handle=0x105c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.879540Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="dat/files.tbl" err=File not found: dat/files.tbl handle=0x1060 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.883435Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.pak" size=964 handle=0x106c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.884123Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 964 bytes from "dat/tables.pak" @ 0 (handle=0x106c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.885277Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45ce534ffea.tmp" host="/tmp/xenia-rs-cache-583013-0/69d8e45ce534ffea.tmp" disp=3 size=0 handle=0x1074 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.885324Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 964 bytes to "cache:/69d8e45ce534ffea.tmp" @ 0 (handle=0x1074) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.885362Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1078 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.885544Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583013-0/access" disp=5 size=0 handle=0x107c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.885590Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 12 bytes to "cache:/access" @ 0 (handle=0x107c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.885624Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.885689Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583013-0/recent" disp=5 size=0 handle=0x1080 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.885716Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 8 bytes to "cache:/recent" @ 0 (handle=0x1080) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.885961Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c" host="/tmp/xenia-rs-cache-583013-0/69d8e45c" disp=2 size=0 handle=0x1084 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.885989Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583013-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.886014Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45ce534ffea.tmp" host="/tmp/xenia-rs-cache-583013-0/69d8e45ce534ffea.tmp" disp=1 size=964 handle=0x1088 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.887812Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.p00" size=435498 handle=0x1090 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.888320Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 206848 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.888860Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=6 on hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.888898Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=6 handle=0x10a8 hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.890305Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c9355f2f8.tmp" host="/tmp/xenia-rs-cache-583013-0/69d8e45c9355f2f8.tmp" disp=3 size=0 handle=0x10ac path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.890405Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/69d8e45c9355f2f8.tmp" @ 0 (handle=0x10ac) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.890576Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x10b0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.891030Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583013-0/access" disp=5 size=0 handle=0x10b4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.891078Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 24 bytes to "cache:/access" @ 0 (handle=0x10b4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.891165Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.891270Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583013-0/recent" disp=5 size=0 handle=0x10b8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.891455Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 16 bytes to "cache:/recent" @ 0 (handle=0x10b8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.891960Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.891991Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583013-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.892026Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c9355f2f8.tmp" host="/tmp/xenia-rs-cache-583013-0/69d8e45c9355f2f8.tmp" disp=1 size=2048 handle=0x10bc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.898975Z  INFO cmd_exec:run_execution: xenia_kernel::exports: VdSetGraphicsInterruptCallback(0x824be9a0, 0x4244df00) — callback armed path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.899841Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=7 on hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false pri=0 mask=0x04 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.899855Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=7 handle=0x10cc hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false aff=0x04 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:44.899952Z  INFO xenia_gpu::gpu_system: gpu: ring initialized base=0x0adcc000 size_bytes=4096 size_dwords=1024
2026-05-10T10:35:44.899965Z  INFO xenia_gpu::gpu_system: gpu: rptr writeback enabled addr=0x008619fc block_dwords=64
2026-05-10T10:35:45.802458Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=1 fb=0x0b1d8000 width=1280 height=720
2026-05-10T10:35:45.835933Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=8 on hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:45.836508Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=8 handle=0x10d8 hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:45.838515Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/tables.p00" @ 86016 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:45.839817Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3a2c8c185.tmp" host="/tmp/xenia-rs-cache-583013-0/aab216c3a2c8c185.tmp" disp=3 size=0 handle=0x10ec path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:45.839970Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 102400 bytes to "cache:/aab216c3a2c8c185.tmp" @ 0 (handle=0x10ec) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:45.840028Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x10f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:45.840478Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583013-0/access" disp=5 size=0 handle=0x10f4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:45.840510Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 36 bytes to "cache:/access" @ 0 (handle=0x10f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:45.840565Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:45.840650Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583013-0/recent" disp=5 size=0 handle=0x10f8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:45.840681Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 24 bytes to "cache:/recent" @ 0 (handle=0x10f8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:45.841222Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3" host="/tmp/xenia-rs-cache-583013-0/aab216c3" disp=2 size=0 handle=0x10fc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:45.841253Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583013-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:45.841278Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3a2c8c185.tmp" host="/tmp/xenia-rs-cache-583013-0/aab216c3a2c8c185.tmp" disp=1 size=102400 handle=0x1100 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.121591Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.pak" size=114244 handle=0x1108 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.122030Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 114244 bytes from "dat/sound.pak" @ 0 (handle=0x1108) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.128098Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c939a9dcc.tmp" host="/tmp/xenia-rs-cache-583013-0/69d8e45c939a9dcc.tmp" disp=3 size=0 handle=0x1110 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.128308Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 114244 bytes to "cache:/69d8e45c939a9dcc.tmp" @ 0 (handle=0x1110) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.128395Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1114 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.129071Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583013-0/access" disp=5 size=0 handle=0x1118 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.129151Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 48 bytes to "cache:/access" @ 0 (handle=0x1118) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.129225Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.129328Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583013-0/recent" disp=5 size=0 handle=0x111c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.129397Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 32 bytes to "cache:/recent" @ 0 (handle=0x111c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.129632Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.129904Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583013-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.129961Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c939a9dcc.tmp" host="/tmp/xenia-rs-cache-583013-0/69d8e45c939a9dcc.tmp" disp=1 size=114244 handle=0x1120 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.145525Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.p04" size=14903296 handle=0x1128 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.146102Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/sound.p04" @ 5931008 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.148536Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c973a5c0a.tmp" host="/tmp/xenia-rs-cache-583013-0/69d8e45c973a5c0a.tmp" disp=3 size=0 handle=0x1138 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.148672Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/69d8e45c973a5c0a.tmp" @ 0 (handle=0x1138) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.148776Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x113c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.149457Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583013-0/access" disp=5 size=0 handle=0x1140 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.149528Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 60 bytes to "cache:/access" @ 0 (handle=0x1140) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.149624Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.149764Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583013-0/recent" disp=5 size=0 handle=0x1144 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.149829Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 40 bytes to "cache:/recent" @ 0 (handle=0x1144) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.150214Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.150274Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583013-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.150337Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c973a5c0a.tmp" host="/tmp/xenia-rs-cache-583013-0/69d8e45c973a5c0a.tmp" disp=1 size=2048 handle=0x1148 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.209043Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=9 on hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true pri=0 mask=0x10 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.209066Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=9 handle=0x114c hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true aff=0x10 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.209103Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=10 on hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true pri=0 mask=0x20 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.209110Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=10 handle=0x1150 hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true aff=0x20 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.209502Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XAudioRegisterRenderDriverClient: index=0 callback=0x824d6640 arg=0x41e9dd5c wrapped=0x4b9f0000 driver=0x41550000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.281621Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 5933056 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.282014Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6064128 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.282283Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6195200 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.282577Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6326272 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.282835Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6457344 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.283142Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6588416 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.283414Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6719488 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.283703Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6850560 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.283962Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6981632 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.284247Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7112704 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.284580Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7243776 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.284830Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7374848 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.285097Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7505920 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.285340Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7636992 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.285612Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7768064 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.285855Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7899136 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.286129Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8030208 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.286372Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8161280 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.286654Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8292352 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.287037Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8423424 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.287295Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8554496 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.287676Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8685568 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.287957Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8816640 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.288236Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8947712 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.288482Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9078784 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.288796Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9209856 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.289040Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9340928 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.289307Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9472000 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.289564Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9603072 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.289845Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9734144 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.290087Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9865216 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.290357Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9996288 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.290620Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10127360 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.290930Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10258432 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.291190Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10389504 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.291494Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10520576 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.292124Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10651648 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.292385Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10782720 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.292652Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10913792 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.292920Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11044864 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.293164Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11175936 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.293421Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11307008 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.293682Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11438080 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.293940Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11569152 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.294195Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11700224 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.294450Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11831296 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.294752Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11962368 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.295249Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12093440 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.295614Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12224512 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.295861Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12355584 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.296340Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12486656 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.296796Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12617728 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.297045Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12748800 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.297314Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12879872 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.297568Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13010944 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.297832Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13142016 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.298082Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13273088 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.298441Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13404160 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.298760Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13535232 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.299072Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13666304 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.299616Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13797376 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.299912Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13928448 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.300174Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14059520 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.300625Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14190592 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.300965Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14321664 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.301263Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14452736 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.301571Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14583808 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.301877Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14714880 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.302115Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 57344 bytes from "dat/sound.p04" @ 14845952 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.305311Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=11 on hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.305361Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=11 handle=0x1270 hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.305823Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=12 on hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.305872Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=12 handle=0x127c hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.308943Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 77824 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.310809Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c35ee70e0a.tmp" host="/tmp/xenia-rs-cache-583013-0/aab216c35ee70e0a.tmp" disp=3 size=0 handle=0x1294 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.310922Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/aab216c35ee70e0a.tmp" @ 0 (handle=0x1294) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.311012Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1298 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.312082Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583013-0/access" disp=5 size=0 handle=0x129c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.312178Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 72 bytes to "cache:/access" @ 0 (handle=0x129c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.312257Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.312424Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583013-0/recent" disp=5 size=0 handle=0x12a0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.312488Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 48 bytes to "cache:/recent" @ 0 (handle=0x12a0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.312886Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/aab216c3" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.312955Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583013-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.313017Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c35ee70e0a.tmp" host="/tmp/xenia-rs-cache-583013-0/aab216c35ee70e0a.tmp" disp=1 size=2048 handle=0x12a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.314170Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=13 on hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.314221Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=13 handle=0x12a8 hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.314428Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=14 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.314468Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=14 handle=0x12b0 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.314547Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=15 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.314622Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=15 handle=0x12b4 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.320182Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Base.xpr" size=8507404 handle=0x12bc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.322762Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.pak" size=208 handle=0x12c8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.323160Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 208 bytes from "dat/GP_TITLE.pak" @ 0 (handle=0x12c8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.324236Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45cc295ead8.tmp" host="/tmp/xenia-rs-cache-583013-0/69d8e45cc295ead8.tmp" disp=3 size=0 handle=0x12d0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.324327Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 208 bytes to "cache:/69d8e45cc295ead8.tmp" @ 0 (handle=0x12d0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.324404Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x12d4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.324983Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583013-0/access" disp=5 size=0 handle=0x12d8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.325058Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 84 bytes to "cache:/access" @ 0 (handle=0x12d8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.325138Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.325264Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583013-0/recent" disp=5 size=0 handle=0x12dc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.325420Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 56 bytes to "cache:/recent" @ 0 (handle=0x12dc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.325829Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.325894Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583013-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.325953Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45cc295ead8.tmp" host="/tmp/xenia-rs-cache-583013-0/69d8e45cc295ead8.tmp" disp=1 size=208 handle=0x12e0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.326903Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.327981Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.333996Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.p00" size=12283578 handle=0x12f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.345283Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/ptc_pack.xpr" size=20654092 handle=0x12f4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.351793Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 131072 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.352239Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 262144 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.352868Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 393216 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.353271Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 524288 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.353661Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 655360 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.354015Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 786432 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.354407Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 917504 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.354810Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1048576 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.355199Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1179648 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.355559Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1310720 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.355892Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1441792 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.356331Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1572864 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.356758Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1703936 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.364700Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1832960 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.372949Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1964032 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.373222Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2095104 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.373434Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2226176 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.373652Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2357248 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.373856Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2488320 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.374298Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2619392 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.374609Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2750464 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.374919Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2881536 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.375275Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3012608 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.375746Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3143680 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.376060Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3274752 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.376397Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3405824 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.376667Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3536896 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.377181Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3667968 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.377814Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3799040 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.378054Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3930112 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.378287Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4061184 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.378610Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4192256 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.378850Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4323328 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.379093Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4454400 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.379409Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4585472 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.379792Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4716544 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.380012Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4847616 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.380222Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4978688 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.380430Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5109760 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.381816Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5240832 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.382033Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5371904 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.382260Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5502976 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.382502Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5634048 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.383674Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5765120 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.383945Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5896192 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.384194Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6027264 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.384440Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6158336 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.384694Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6289408 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.384976Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6420480 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.385224Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6551552 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.385470Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6682624 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.385718Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6813696 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.385997Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6944768 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.386238Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7075840 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.386481Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7206912 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.386731Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7337984 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.387017Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7469056 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.387265Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7600128 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.387720Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7731200 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.387990Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7862272 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.388245Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7993344 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.388480Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8124416 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.388736Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8255488 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.389052Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 120844 bytes from "hidden/Resource3D/Base.xpr" @ 8386560 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.395299Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 51200 bytes from "dat/GP_TITLE.p00" @ 0 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.398262Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cdba806e.tmp" host="/tmp/xenia-rs-cache-583013-0/87719002cdba806e.tmp" disp=3 size=0 handle=0x1430 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.398375Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 49530 bytes to "cache:/87719002cdba806e.tmp" @ 0 (handle=0x1430) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.398426Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1434 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.398946Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583013-0/access" disp=5 size=0 handle=0x1438 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.398976Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 96 bytes to "cache:/access" @ 0 (handle=0x1438) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.399011Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.399095Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583013-0/recent" disp=5 size=0 handle=0x143c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.399131Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 64 bytes to "cache:/recent" @ 0 (handle=0x143c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.400141Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002" host="/tmp/xenia-rs-cache-583013-0/87719002" disp=2 size=0 handle=0x1440 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.400174Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583013-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.400204Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cdba806e.tmp" host="/tmp/xenia-rs-cache-583013-0/87719002cdba806e.tmp" disp=1 size=49530 handle=0x1444 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.401010Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.401943Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 51200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.405321Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Common.xpr" size=593932 handle=0x1450 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.409751Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/GP_TITLE.p00" @ 182272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.422394Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cec0a96e.tmp" host="/tmp/xenia-rs-cache-583013-0/87719002cec0a96e.tmp" disp=3 size=0 handle=0x145c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.422636Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 232205 bytes to "cache:/87719002cec0a96e.tmp" @ 0 (handle=0x145c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.422688Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1460 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.423265Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583013-0/access" disp=5 size=0 handle=0x1464 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.423302Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 108 bytes to "cache:/access" @ 0 (handle=0x1464) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.423351Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.423453Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583013-0/recent" disp=5 size=0 handle=0x1468 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.423491Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 72 bytes to "cache:/recent" @ 0 (handle=0x1468) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.423773Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.423802Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583013-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.423832Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cec0a96e.tmp" host="/tmp/xenia-rs-cache-583013-0/87719002cec0a96e.tmp" disp=1 size=232205 handle=0x146c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.424504Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 507904 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.430645Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 638976 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.430880Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 770048 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.431121Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 901120 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.431383Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1032192 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.431916Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1163264 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.432199Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1294336 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.432421Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1425408 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.432699Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1556480 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.432949Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1687552 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.433365Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1818624 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.433731Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1949696 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.433974Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2080768 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.434217Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2211840 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.434460Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2342912 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.435934Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2473984 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.436922Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2605056 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.437178Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2736128 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.437411Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2867200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.437657Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2998272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.437865Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 100352 bytes from "dat/GP_TITLE.p00" @ 3129344 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.549913Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a60fcb85.tmp" host="/tmp/xenia-rs-cache-583013-0/87719002a60fcb85.tmp" disp=3 size=0 handle=0x14c4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.551830Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2721352 bytes to "cache:/87719002a60fcb85.tmp" @ 0 (handle=0x14c4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.551941Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x14c8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.553799Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583013-0/access" disp=5 size=0 handle=0x14cc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.553867Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 120 bytes to "cache:/access" @ 0 (handle=0x14cc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.553931Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.554039Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583013-0/recent" disp=5 size=0 handle=0x14d0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.554094Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 80 bytes to "cache:/recent" @ 0 (handle=0x14d0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.554345Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.554373Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583013-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.554425Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a60fcb85.tmp" host="/tmp/xenia-rs-cache-583013-0/87719002a60fcb85.tmp" disp=1 size=2721352 handle=0x14d4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.555194Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "dat/GP_TITLE.p00" @ 468992 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.557620Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002285d8849.tmp" host="/tmp/xenia-rs-cache-583013-0/87719002285d8849.tmp" disp=3 size=0 handle=0x14dc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.557697Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 38706 bytes to "cache:/87719002285d8849.tmp" @ 0 (handle=0x14dc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.557744Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x14e0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.558458Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583013-0/access" disp=5 size=0 handle=0x14e4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.558492Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 132 bytes to "cache:/access" @ 0 (handle=0x14e4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.558563Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.559070Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583013-0/recent" disp=5 size=0 handle=0x14e8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.559107Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 88 bytes to "cache:/recent" @ 0 (handle=0x14e8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.560644Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.560703Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583013-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.560760Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002285d8849.tmp" host="/tmp/xenia-rs-cache-583013-0/87719002285d8849.tmp" disp=1 size=38706 handle=0x14ec path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.561419Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3229696 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.567630Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3360768 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.568133Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3491840 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.568409Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3622912 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.568674Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3753984 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.568933Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3885056 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.569208Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4016128 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.569465Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4147200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.569728Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4278272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.569949Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4409344 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.570187Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 88064 bytes from "dat/GP_TITLE.p00" @ 4540416 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.623571Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a715f485.tmp" host="/tmp/xenia-rs-cache-583013-0/87719002a715f485.tmp" disp=3 size=0 handle=0x151c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.624013Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 1398049 bytes to "cache:/87719002a715f485.tmp" @ 0 (handle=0x151c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.624107Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1520 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.624931Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583013-0/access" disp=5 size=0 handle=0x1524 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.624995Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 144 bytes to "cache:/access" @ 0 (handle=0x1524) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.625056Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.625169Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583013-0/recent" disp=5 size=0 handle=0x1528 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.625236Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 96 bytes to "cache:/recent" @ 0 (handle=0x1528) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.625457Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.625522Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583013-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.625630Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a715f485.tmp" host="/tmp/xenia-rs-cache-583013-0/87719002a715f485.tmp" disp=1 size=1398049 handle=0x152c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.626381Z  INFO cmd_exec:run_execution: xenia_rs: HW thread returned to LR sentinel — marking exited hw_id=1 tid=Some(12) is_main=false cycle=18592099 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.626930Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 116736 bytes from "dat/GP_TITLE.p00" @ 284672 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.627003Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=16 on hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.627041Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=16 handle=0x153c hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.629915Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=17 on hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.629959Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=17 handle=0x154c hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.635704Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cf2a8ccd.tmp" host="/tmp/xenia-rs-cache-583013-0/87719002cf2a8ccd.tmp" disp=3 size=0 handle=0x1558 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.635884Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 115604 bytes to "cache:/87719002cf2a8ccd.tmp" @ 0 (handle=0x1558) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.635988Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x155c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.638162Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583013-0/access" disp=5 size=0 handle=0x1560 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.638238Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 156 bytes to "cache:/access" @ 0 (handle=0x1560) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.638362Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.638570Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=18 on hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.638587Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=18 handle=0x1570 hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.638665Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583013-0/recent" disp=5 size=0 handle=0x1574 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.638703Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 104 bytes to "cache:/recent" @ 0 (handle=0x1574) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.638784Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=19 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.638866Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=19 handle=0x1580 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.639030Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=20 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.639060Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=20 handle=0x1588 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.639735Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.639804Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583013-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.639865Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cf2a8ccd.tmp" host="/tmp/xenia-rs-cache-583013-0/87719002cf2a8ccd.tmp" disp=1 size=115604 handle=0x158c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:46.642645Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 67584 bytes from "dat/GP_TITLE.p00" @ 401408 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.543406Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=2 fb=0x0b1d8000 width=1280 height=720
2026-05-10T10:35:47.552020Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/8771900201a2db9c.tmp" host="/tmp/xenia-rs-cache-583013-0/8771900201a2db9c.tmp" disp=3 size=0 handle=0x1594 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.552187Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 66079 bytes to "cache:/8771900201a2db9c.tmp" @ 0 (handle=0x1594) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.552282Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1598 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.556170Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-583013-0/access" disp=5 size=0 handle=0x159c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.556261Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 168 bytes to "cache:/access" @ 0 (handle=0x159c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.556406Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.556753Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-583013-0/recent" disp=5 size=0 handle=0x15a0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.556839Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 112 bytes to "cache:/recent" @ 0 (handle=0x15a0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.557954Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.558030Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-583013-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.558103Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/8771900201a2db9c.tmp" host="/tmp/xenia-rs-cache-583013-0/8771900201a2db9c.tmp" disp=1 size=66079 handle=0x15a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.562998Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.582175Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 131072 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.583120Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 262144 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.583863Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 393216 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.584676Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 524288 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.585432Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 655360 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.586193Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 786432 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.587008Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 917504 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.587766Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1048576 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.588512Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1179648 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.589269Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1310720 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.590037Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1441792 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.590869Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1572864 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.591662Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1703936 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.592854Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1835008 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.593649Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1966080 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.594375Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2097152 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.595110Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2228224 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.598086Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2359296 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.599283Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2490368 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.600150Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2621440 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.601110Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2752512 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.601845Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2883584 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.602567Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3014656 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.603322Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3145728 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.604083Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3276800 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.604833Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3407872 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.605604Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3538944 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.606365Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3670016 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.607132Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3801088 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.607928Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3932160 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.608687Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4063232 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.609528Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4194304 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.610289Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4325376 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.611084Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4456448 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.612248Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4587520 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.613629Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4718592 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.614445Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4849664 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.615199Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4980736 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.616297Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5111808 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.617274Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5242880 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.618041Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5373952 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.618834Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5505024 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.620967Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5636096 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.622424Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5767168 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.623199Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5898240 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.623935Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6029312 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.624669Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6160384 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.625390Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6291456 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.626283Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6422528 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.632535Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6459392 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.650509Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6590464 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.651249Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6721536 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.652160Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6852608 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.652952Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6983680 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.653722Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7114752 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.654513Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7245824 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.655279Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7376896 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.656234Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7507968 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.657067Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7639040 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.658074Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7770112 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.659045Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7901184 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.659841Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8032256 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.660573Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8163328 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.662592Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8294400 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.663428Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8425472 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.664322Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8556544 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.665505Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8687616 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.666264Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8818688 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.667034Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8949760 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.667791Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9080832 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.668502Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9211904 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.669355Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9342976 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.670226Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9474048 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.671042Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9605120 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.671977Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9736192 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.672702Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9867264 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.673426Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9998336 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.674157Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10129408 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.674886Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10260480 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.675615Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10391552 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.676339Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10522624 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.677058Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10653696 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.677783Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10784768 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.678502Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10915840 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.679221Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11046912 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.679952Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11177984 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.680682Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11309056 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.681397Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11440128 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.682125Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11571200 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.682855Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11702272 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.683585Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11833344 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.684306Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11964416 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.685944Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12095488 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.687451Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12226560 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.688433Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12357632 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.689196Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12488704 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.690165Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12619776 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.690890Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12750848 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.691944Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12881920 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.692723Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13012992 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.693483Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13144064 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.694332Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13275136 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.695134Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13406208 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.695868Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13537280 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.696732Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13668352 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.697443Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13799424 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.698173Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13930496 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.698909Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14061568 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.699657Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14192640 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.700373Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14323712 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.701099Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14454784 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.701864Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14585856 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.702663Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14716928 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.703540Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14848000 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.704336Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14979072 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.705133Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15110144 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.705886Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15241216 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.706813Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15372288 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.707762Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15503360 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.708526Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15634432 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.709289Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15765504 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.710041Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15896576 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.710771Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16027648 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.711528Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16158720 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.712291Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16289792 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.713098Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16420864 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.713871Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16551936 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.714681Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16683008 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.715481Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16814080 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.716414Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16945152 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.717327Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17076224 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.718335Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17207296 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.719099Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17338368 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.719861Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17469440 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.721854Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17600512 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.722591Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17731584 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.723321Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17862656 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.724544Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17993728 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.726007Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18124800 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.726887Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18255872 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.727682Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18386944 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.728411Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18518016 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.729139Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18649088 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.729907Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18780160 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.730718Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18911232 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.731476Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19042304 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.732279Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19173376 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.733042Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19304448 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.733804Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19435520 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.734530Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19566592 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.735487Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19697664 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.736226Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19828736 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.736967Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19959808 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.737686Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20090880 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.738435Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20221952 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.739164Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20353024 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.740093Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20484096 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.741012Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38924 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20615168 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:35:47.749900Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Common.xpr" @ 0 (handle=0x1450) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.426395Z  INFO cmd_exec:run_execution: xenia_rs: reached max instruction count limit=500000000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T10:36:18.429231Z  INFO cmd_exec: xenia_rs: in-memory trace log entries=0 path=sylpheed.iso
2026-05-10T10:36:18.430867Z  INFO cmd_exec: xenia_rs: exec complete wall_ms=34033 instructions=500000019 import_calls=5629636 unimplemented=0 path=sylpheed.iso
2026-05-10T10:36:18.443976Z  INFO xenia_rs::observability: metrics summary:
histogram xex.load_image_ms = count=1 sum=102.000 min=102.000 max=102.000 mean=102.000
counter xex.bytes_in = 3485696
counter xex.bytes_out = 9568256
counter kernel.calls{name=RtlImageXexHeaderField} = 2
counter kernel.calls{name=NtAllocateVirtualMemory} = 3
counter kernel.calls{name=KeGetCurrentProcessType} = 3
counter kernel.calls{name=RtlInitializeCriticalSection} = 29
counter kernel.calls{name=RtlEnterCriticalSection} = 889112
counter kernel.calls{name=RtlLeaveCriticalSection} = 889111
counter kernel.calls{name=XexCheckExecutablePrivilege} = 2
counter kernel.calls{name=XGetAVPack} = 1
counter kernel.calls{name=KeTlsAlloc} = 2
counter kernel.calls{name=KeTlsSetValue} = 2
counter kernel.calls{name=KeQuerySystemTime} = 2
counter kernel.calls{name=RtlInitializeCriticalSectionAndSpinCount} = 104
counter kernel.calls{name=MmAllocatePhysicalMemoryEx} = 17
counter kernel.calls{name=NtCreateEvent} = 395
counter kernel.calls{name=KeQueryPerformanceFrequency} = 6
counter kernel.calls{name=NtCreateFile} = 90
counter kernel.calls{name=NtReadFile} = 344
counter kernel.calls{name=NtClose} = 502
counter kernel.calls{name=XeCryptSha} = 1
counter kernel.calls{name=XeKeysConsolePrivateKeySign} = 1
counter kernel.calls{name=NtWriteFile} = 63
counter kernel.calls{name=RtlInitAnsiString} = 173
counter kernel.calls{name=NtOpenFile} = 51
counter kernel.calls{name=NtDeviceIoControlFile} = 2
counter kernel.calls{name=IoDismountVolumeByFileHandle} = 1
counter kernel.calls{name=NtQueryVolumeInformationFile} = 18
counter kernel.calls{name=KeEnterCriticalRegion} = 4
counter kernel.calls{name=XamTaskSchedule} = 1
counter scheduler.spawn.ok = 19
counter kernel.calls{name=XamTaskCloseHandle} = 1
counter kernel.calls{name=KeWaitForSingleObject} = 5
counter kernel.calls{name=StfsCreateDevice} = 1
counter kernel.calls{name=ObCreateSymbolicLink} = 1
counter kernel.calls{name=ExRegisterTitleTerminateNotification} = 3
counter kernel.calls{name=KeSetEvent} = 1
counter kernel.calls{name=KeResetEvent} = 1
counter kernel.calls{name=KeLeaveCriticalRegion} = 4
counter kernel.calls{name=RtlNtStatusToDosError} = 64
counter kernel.calls{name=ExCreateThread} = 18
counter kernel.calls{name=ObReferenceObjectByHandle} = 15
counter kernel.calls{name=KeSetAffinityThread} = 12
counter kernel.calls{name=ObDereferenceObject} = 17
counter kernel.calls{name=XamContentCreateEnumerator} = 1
counter kernel.calls{name=XamEnumerate} = 1
counter kernel.calls{name=NtWaitForSingleObjectEx} = 1489791
counter kernel.calls{name=NtCreateSemaphore} = 10
counter kernel.calls{name=NtQueryDirectoryFile} = 1
counter kernel.calls{name=NtQueryFullAttributesFile} = 16
counter kernel.calls{name=NtWaitForMultipleObjectsEx} = 865500
counter kernel.calls{name=NtDuplicateObject} = 36
counter kernel.calls{name=NtReleaseSemaphore} = 393
counter kernel.calls{name=NtQueryInformationFile} = 377
counter kernel.calls{name=NtSetInformationFile} = 60
counter kernel.calls{name=NtSetEvent} = 3334
counter kernel.calls{name=MmFreePhysicalMemory} = 12
counter kernel.calls{name=XamNotifyCreateListener} = 1
counter kernel.calls{name=VdInitializeEngines} = 2
counter kernel.calls{name=VdShutdownEngines} = 1
counter kernel.calls{name=VdSetGraphicsInterruptCallback} = 1
counter kernel.calls{name=ExGetXConfigSetting} = 3
counter kernel.calls{name=VdSetSystemCommandBufferGpuIdentifierAddress} = 2
counter kernel.calls{name=MmGetPhysicalAddress} = 1
counter kernel.calls{name=VdInitializeRingBuffer} = 1
counter kernel.calls{name=VdEnableRingBufferRPtrWriteBack} = 1
counter kernel.calls{name=KiApcNormalRoutineNop} = 1
counter kernel.calls{name=KeSetBasePriorityThread} = 3
counter kernel.calls{name=VdQueryVideoMode} = 2
counter kernel.calls{name=VdQueryVideoFlags} = 2
counter kernel.calls{name=VdCallGraphicsNotificationRoutines} = 1
counter kernel.calls{name=VdRetrainEDRAMWorker} = 1
counter kernel.calls{name=VdRetrainEDRAM} = 3
counter kernel.calls{name=VdIsHSIOTrainingSucceeded} = 1
counter kernel.calls{name=VdGetSystemCommandBuffer} = 2
counter kernel.calls{name=VdSwap} = 2
counter gpu.interrupt.delivered{source=1} = 2
counter kernel.calls{name=KeAcquireSpinLockAtRaisedIrql} = 28
counter kernel.calls{name=KeReleaseSpinLockFromRaisedIrql} = 28
counter kernel.calls{name=VdGetCurrentDisplayGamma} = 1
counter gpu.interrupt.delivered{source=0} = 3295
counter kernel.calls{name=VdSetDisplayMode} = 1
counter kernel.calls{name=VdGetCurrentDisplayInformation} = 1
counter kernel.calls{name=RtlFillMemoryUlong} = 1
counter kernel.calls{name=VdInitializeScalerCommandBuffer} = 1
counter kernel.calls{name=VdPersistDisplay} = 1
counter kernel.calls{name=NtResumeThread} = 6
counter kernel.calls{name=XGetGameRegion} = 2
counter kernel.calls{name=KeInitializeSemaphore} = 1
counter kernel.calls{name=KeResumeThread} = 2
counter kernel.calls{name=KeRaiseIrqlToDpcLevel} = 33
counter kernel.calls{name=KfLowerIrql} = 26
counter kernel.calls{name=XAudioRegisterRenderDriverClient} = 1
counter kernel.calls{name=ObLookupThreadByThreadId} = 2
counter kernel.calls{name=ObOpenObjectByPointer} = 2
counter kernel.calls{name=XNotifyPositionUI} = 1
counter kernel.calls{name=NtCreateTimer} = 1
counter kernel.calls{name=NtSetTimerEx} = 1
counter kernel.calls{name=XamInputGetCapabilities} = 8
counter kernel.calls{name=XNotifyGetNext} = 1489735
counter kernel.calls{name=XamUserGetSigninState} = 2
counter kernel.calls{name=XamUserGetXUID} = 1
counter kernel.calls{name=XamUserReadProfileSettings} = 2