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:
80
audit-runs/audit-023-canary-diff/canary-patch.diff
Normal file
80
audit-runs/audit-023-canary-diff/canary-patch.diff
Normal file
@@ -0,0 +1,80 @@
|
||||
diff --git a/src/xenia/cpu/cpu_flags.cc b/src/xenia/cpu/cpu_flags.cc
|
||||
index 3ff067e15..467bc34b2 100644
|
||||
--- a/src/xenia/cpu/cpu_flags.cc
|
||||
+++ b/src/xenia/cpu/cpu_flags.cc
|
||||
@@ -57,3 +57,9 @@ DEFINE_bool(break_condition_truncate, true, "truncate value to 32-bits", "CPU");
|
||||
|
||||
DEFINE_bool(break_on_debugbreak, true, "int3 on JITed __debugbreak requests.",
|
||||
"CPU");
|
||||
+
|
||||
+DEFINE_string(memory_dump_path, "",
|
||||
+ "If non-empty, dump guest memory (heaps v0/v40/v80/v90/phys) to "
|
||||
+ "this path on first XamNotifyCreateListener call. Format = "
|
||||
+ "Memory::Save() raw (no signature/header).",
|
||||
+ "CPU");
|
||||
diff --git a/src/xenia/cpu/cpu_flags.h b/src/xenia/cpu/cpu_flags.h
|
||||
index 38c4f98ba..02f15d5b2 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_string(memory_dump_path);
|
||||
+
|
||||
#endif // XENIA_CPU_CPU_FLAGS_H_
|
||||
diff --git a/src/xenia/kernel/xam/xam_notify.cc b/src/xenia/kernel/xam/xam_notify.cc
|
||||
index 2f88d5e7d..006c7e5d9 100644
|
||||
--- a/src/xenia/kernel/xam/xam_notify.cc
|
||||
+++ b/src/xenia/kernel/xam/xam_notify.cc
|
||||
@@ -15,6 +15,15 @@
|
||||
#include "xenia/kernel/xthread.h"
|
||||
#include "xenia/xbox.h"
|
||||
|
||||
+#include <atomic>
|
||||
+#include "xenia/base/byte_stream.h"
|
||||
+#include "xenia/base/filesystem.h"
|
||||
+#include "xenia/base/logging.h"
|
||||
+#include "xenia/base/mapped_memory.h"
|
||||
+#include "xenia/cpu/cpu_flags.h"
|
||||
+#include "xenia/emulator.h"
|
||||
+#include "xenia/memory.h"
|
||||
+
|
||||
namespace xe {
|
||||
namespace kernel {
|
||||
namespace xam {
|
||||
@@ -42,7 +51,33 @@ dword_result_t XamNotifyCreateListener_entry(qword_t mask,
|
||||
auto thread = kernel::XThread::GetCurrentThread();
|
||||
auto ctx = thread->thread_state()->context();
|
||||
auto type = xboxkrnl::xeKeGetCurrentProcessType(ctx);
|
||||
- return xeXamNotifyCreateListener(mask, type == 2, max_version);
|
||||
+ uint32_t result = xeXamNotifyCreateListener(mask, type == 2, max_version);
|
||||
+
|
||||
+ // AUDIT-023: dump guest memory on first XamNotifyCreateListener call.
|
||||
+ static std::atomic<bool> dumped{false};
|
||||
+ bool expected = false;
|
||||
+ if (!cvars::memory_dump_path.empty() &&
|
||||
+ dumped.compare_exchange_strong(expected, true)) {
|
||||
+ std::filesystem::path path(cvars::memory_dump_path);
|
||||
+ XELOGI("AUDIT-023: dumping guest memory to {} (mask={:#x})",
|
||||
+ cvars::memory_dump_path, uint64_t(mask));
|
||||
+ // Pre-size the file: PosixMappedMemory mmap's the existing file size.
|
||||
+ constexpr size_t kReserve = size_t(2) * 1024 * 1024 * 1024;
|
||||
+ filesystem::CreateEmptyFile(path);
|
||||
+ std::filesystem::resize_file(path, kReserve);
|
||||
+ auto map = MappedMemory::Open(path, MappedMemory::Mode::kReadWrite, 0,
|
||||
+ kReserve);
|
||||
+ if (map) {
|
||||
+ ByteStream stream(map->data(), map->size());
|
||||
+ kernel_state()->emulator()->memory()->Save(&stream);
|
||||
+ map->Close(stream.offset());
|
||||
+ XELOGI("AUDIT-023: wrote {} bytes", stream.offset());
|
||||
+ } else {
|
||||
+ XELOGE("AUDIT-023: failed to open dump path");
|
||||
+ }
|
||||
+ }
|
||||
+
|
||||
+ return result;
|
||||
}
|
||||
DECLARE_XAM_EXPORT1(XamNotifyCreateListener, kNone, kImplemented);
|
||||
|
||||
447
audit-runs/audit-023-canary-diff/diff.txt
Normal file
447
audit-runs/audit-023-canary-diff/diff.txt
Normal file
@@ -0,0 +1,447 @@
|
||||
[i] dump size: 216004608 bytes (206.0 MiB)
|
||||
[i] heap v00000000 base=0x00000000 size=0x40000000 pages=262144 ps=4096
|
||||
[i] committed_pages=447 cursor_after=0x3bf000
|
||||
[i] heap v40000000 base=0x40000000 size=0x3f000000 pages=16128 ps=65536
|
||||
[i] committed_pages=57 cursor_after=0x76e800
|
||||
[i] heap v80000000 base=0x80000000 size=0x10000000 pages=4096 ps=65536
|
||||
[i] committed_pages=146 cursor_after=0x1096800
|
||||
[i] heap v90000000 base=0x90000000 size=0x10000000 pages=65536 ps=4096
|
||||
[i] committed_pages=0 cursor_after=0x1116800
|
||||
[i] heap physical base=0x00000000 size=0x20000000 pages=131072 ps=4096
|
||||
[i] committed_pages=48105 cursor_after=0xcdff800
|
||||
[i] total parsed bytes: 0xcdff800; remaining tail: 0
|
||||
|
||||
|
||||
=== addr 0x828e1f08 (canary heap=v80000000 status=committed) ===
|
||||
DIFF +0000 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 40111890 00000000 00000000 00000000
|
||||
+0010 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0020 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0030 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0040 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0050 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0060 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0070 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
|
||||
=== addr 0x828f0000 (canary heap=v80000000 status=committed) ===
|
||||
+0000 canary: 00000000 00000000 00000000 3f800000
|
||||
ours : 00000000 00000000 00000000 3f800000
|
||||
+0010 canary: 00000000 00000000 3f800000 00000000
|
||||
ours : 00000000 00000000 3f800000 00000000
|
||||
DIFF +0020 canary: bc359d60 00000000 00000000 00000000
|
||||
DIFF ours : 4023ed60 00000000 00000000 00000000
|
||||
DIFF +0030 canary: 00000000 00000000 bc359dc0 00000001
|
||||
DIFF ours : 00000000 00000000 4023edc0 00000001
|
||||
+0040 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
DIFF +0050 canary: bc359e20 00000002 00000000 00000000
|
||||
DIFF ours : 4023ee20 00000002 00000000 00000000
|
||||
DIFF +0060 canary: 00000000 00000000 bc359e80 00000003
|
||||
DIFF ours : 00000000 00000000 4023ee80 00000003
|
||||
+0070 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
|
||||
=== addr 0x828f1000 (canary heap=v80000000 status=committed) ===
|
||||
DIFF +0000 canary: bc35d7e0 00000024 00000000 00000000
|
||||
DIFF ours : 402427e0 00000024 00000000 00000000
|
||||
DIFF +0010 canary: 00000000 00000000 bc35d840 00000025
|
||||
DIFF ours : 00000000 00000000 40242840 00000025
|
||||
+0020 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
DIFF +0030 canary: bc35d8a0 00000026 00000000 00000000
|
||||
DIFF ours : 402428a0 00000026 00000000 00000000
|
||||
DIFF +0040 canary: 00000000 00000000 bc35d900 00000027
|
||||
DIFF ours : 00000000 00000000 40242900 00000027
|
||||
+0050 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0060 canary: 00000000 00000000 3f800000 00000000
|
||||
ours : 00000000 00000000 3f800000 00000000
|
||||
DIFF +0070 canary: bc35d960 00000000 00000000 00000000
|
||||
DIFF ours : 40242960 00000000 00000000 00000000
|
||||
|
||||
=== addr 0x828f2000 (canary heap=v80000000 status=committed) ===
|
||||
+0000 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0010 canary: 00000000 00000000 3f800000 00000000
|
||||
ours : 00000000 00000000 3f800000 00000000
|
||||
DIFF +0020 canary: bc361560 00000000 00000000 00000000
|
||||
DIFF ours : 40246560 00000000 00000000 00000000
|
||||
DIFF +0030 canary: 00000000 00000000 bc3615c0 00000001
|
||||
DIFF ours : 00000000 00000000 402465c0 00000001
|
||||
+0040 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
DIFF +0050 canary: bc361620 00000002 00000000 00000000
|
||||
DIFF ours : 40246620 00000002 00000000 00000000
|
||||
DIFF +0060 canary: 00000000 00000000 bc361680 00000003
|
||||
DIFF ours : 00000000 00000000 40246680 00000003
|
||||
+0070 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
|
||||
=== addr 0x828f3000 (canary heap=v80000000 status=committed) ===
|
||||
+0000 canary: 820b606c 00000000 00000000 00000000
|
||||
ours : 820b606c 00000000 00000000 00000000
|
||||
+0010 canary: 00000000 00000000 00000000 40000000
|
||||
ours : 00000000 00000000 00000000 40000000
|
||||
+0020 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0030 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0040 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0050 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0060 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0070 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
|
||||
=== addr 0x828f3100 (canary heap=v80000000 status=committed) ===
|
||||
+0000 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0010 canary: 01010000 820b6178 00000000 00000000
|
||||
ours : 01010000 820b6178 00000000 00000000
|
||||
+0020 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0030 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0040 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0050 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0060 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0070 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
|
||||
=== addr 0x828f3d00 (canary heap=v80000000 status=committed) ===
|
||||
DIFF +0000 canary: 00000000 00000000 ffffffff 00000000
|
||||
DIFF ours : 00000001 00000000 ffffffff 00000000
|
||||
+0010 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0020 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
DIFF +0030 canary: 00000007 01010000 00000000 00000000
|
||||
DIFF ours : 00000007 01000000 00000000 00000000
|
||||
+0040 canary: 00000000 ffffffff 00000000 00000000
|
||||
ours : 00000000 ffffffff 00000000 00000000
|
||||
DIFF +0050 canary: f8000024 f8000020 00000000 00000000
|
||||
DIFF ours : 00001024 00001020 00000000 00000000
|
||||
+0060 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0070 canary: 00000000 00000000 00000001 828f3d08
|
||||
ours : 00000000 00000000 00000001 828f3d08
|
||||
|
||||
=== addr 0x828f3d08 (canary heap=v80000000 status=committed) ===
|
||||
+0000 canary: ffffffff 00000000 00000000 00000000
|
||||
ours : ffffffff 00000000 00000000 00000000
|
||||
+0010 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
DIFF +0020 canary: 00000000 00000000 00000007 01010000
|
||||
DIFF ours : 00000000 00000000 00000007 01000000
|
||||
+0030 canary: 00000000 00000000 00000000 ffffffff
|
||||
ours : 00000000 00000000 00000000 ffffffff
|
||||
DIFF +0040 canary: 00000000 00000000 f8000024 f8000020
|
||||
DIFF ours : 00000000 00000000 00001024 00001020
|
||||
+0050 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0060 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0070 canary: 00000001 828f3d08 00000000 00000000
|
||||
ours : 00000001 828f3d08 00000000 00000000
|
||||
|
||||
=== addr 0x828f3d80 (canary heap=v80000000 status=committed) ===
|
||||
+0000 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
DIFF +0010 canary: 00000000 00000000 00000001 00000000
|
||||
DIFF ours : 00000000 00000001 00000001 40929c00
|
||||
DIFF +0020 canary: 00000000 00000001 01010000 00000000
|
||||
DIFF ours : 00000001 00000001 01000000 00000000
|
||||
+0030 canary: 00000000 00000000 ffffffff 00000000
|
||||
ours : 00000000 00000000 ffffffff 00000000
|
||||
DIFF +0040 canary: 00000000 00000000 bc32c8a0 0000096a
|
||||
DIFF ours : 00000000 00000000 402118a0 0000098d
|
||||
DIFF +0050 canary: 01010000 00000000 00000000 00000000
|
||||
DIFF ours : 01000000 00000000 00000000 00000000
|
||||
+0060 canary: ffffffff 00000000 00000000 00000000
|
||||
ours : ffffffff 00000000 00000000 00000000
|
||||
DIFF +0070 canary: bc32cd00 00000962 00000000 00000000
|
||||
DIFF ours : 40211d00 00000974 00000000 00000000
|
||||
|
||||
=== addr 0x828f3e00 (canary heap=v80000000 status=committed) ===
|
||||
DIFF +0000 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 00000000 01000000 00000000
|
||||
DIFF +0010 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 00000000 ffffffff 00000000
|
||||
DIFF +0020 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 00000000 40541f80 00000002
|
||||
DIFF +0030 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 40541f40 00000001 00000000
|
||||
DIFF +0040 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 40541f00 00000000 00000000 00000000
|
||||
+0050 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0060 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
DIFF +0070 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 01000000 00000000 00000000 00000000
|
||||
|
||||
=== addr 0x828f3f00 (canary heap=v80000000 status=committed) ===
|
||||
DIFF +0000 canary: 00000000 bc65c8c0 00000000 00000000
|
||||
DIFF ours : 00000000 405418c0 00000000 00000000
|
||||
DIFF +0010 canary: bc22c840 00000000 ffffffff ffffffff
|
||||
DIFF ours : 40111840 00000000 ffffffff ffffffff
|
||||
+0020 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
DIFF +0030 canary: 00000000 00000000 f800000c 00000000
|
||||
DIFF ours : 00000000 000012c0 00001004 00000000
|
||||
DIFF +0040 canary: 00000000 00000002 ffffffff ffffffff
|
||||
DIFF ours : 00000000 00000003 ffffffff ffffffff
|
||||
+0050 canary: 00000000 00000000 00000000 ffffffff
|
||||
ours : 00000000 00000000 00000000 ffffffff
|
||||
DIFF +0060 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000001 00000000 4c941000 00000000
|
||||
DIFF +0070 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : fffffffd 00000000 00000000 00000000
|
||||
|
||||
=== addr 0x828f4070 (canary heap=v80000000 status=committed) ===
|
||||
DIFF +0000 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 01000000 00000000 00000000 00000000
|
||||
DIFF +0010 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : ffffffff 00000000 00000000 000015ec
|
||||
DIFF +0020 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 000015e4 00000000 00000000 00000000
|
||||
DIFF +0030 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 00000000 00000000 00000008
|
||||
DIFF +0040 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : ffffffff 00000000 00000000 00000000
|
||||
+0050 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
DIFF +0060 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000001 00000000 00000000 00000000
|
||||
DIFF +0070 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 00000000 00000000 ffff0000
|
||||
|
||||
=== addr 0x828f40b0 (canary heap=v80000000 status=committed) ===
|
||||
DIFF +0000 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : ffffffff 00000000 00000000 00000000
|
||||
+0010 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
DIFF +0020 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000001 00000000 00000000 00000000
|
||||
DIFF +0030 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 00000000 00000000 ffff0000
|
||||
DIFF +0040 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 ffff0000 00000000 ffff0000
|
||||
DIFF +0050 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 00000001 00000000 00000000
|
||||
DIFF +0060 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 3f19999a 00000000 3f19999a 00000000
|
||||
DIFF +0070 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 3f19999a 00000000 3f19999a 00000000
|
||||
|
||||
=== addr 0x828f40c0 (canary heap=v80000000 status=committed) ===
|
||||
+0000 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
DIFF +0010 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000001 00000000 00000000 00000000
|
||||
DIFF +0020 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 00000000 00000000 ffff0000
|
||||
DIFF +0030 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 ffff0000 00000000 ffff0000
|
||||
DIFF +0040 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 00000001 00000000 00000000
|
||||
DIFF +0050 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 3f19999a 00000000 3f19999a 00000000
|
||||
DIFF +0060 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 3f19999a 00000000 3f19999a 00000000
|
||||
DIFF +0070 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000001 00000000 00000000 00000000
|
||||
|
||||
=== addr 0x828f40d0 (canary heap=v80000000 status=committed) ===
|
||||
DIFF +0000 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000001 00000000 00000000 00000000
|
||||
DIFF +0010 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 00000000 00000000 ffff0000
|
||||
DIFF +0020 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 ffff0000 00000000 ffff0000
|
||||
DIFF +0030 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 00000001 00000000 00000000
|
||||
DIFF +0040 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 3f19999a 00000000 3f19999a 00000000
|
||||
DIFF +0050 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 3f19999a 00000000 3f19999a 00000000
|
||||
DIFF +0060 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000001 00000000 00000000 00000000
|
||||
+0070 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
|
||||
=== addr 0x828f40e0 (canary heap=v80000000 status=committed) ===
|
||||
DIFF +0000 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 00000000 00000000 ffff0000
|
||||
DIFF +0010 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 ffff0000 00000000 ffff0000
|
||||
DIFF +0020 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 00000001 00000000 00000000
|
||||
DIFF +0030 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 3f19999a 00000000 3f19999a 00000000
|
||||
DIFF +0040 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 3f19999a 00000000 3f19999a 00000000
|
||||
DIFF +0050 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000001 00000000 00000000 00000000
|
||||
+0060 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
DIFF +0070 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00100000 00200000 00000000 00000004
|
||||
|
||||
=== addr 0x828f40f0 (canary heap=v80000000 status=committed) ===
|
||||
DIFF +0000 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 ffff0000 00000000 ffff0000
|
||||
DIFF +0010 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 00000001 00000000 00000000
|
||||
DIFF +0020 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 3f19999a 00000000 3f19999a 00000000
|
||||
DIFF +0030 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 3f19999a 00000000 3f19999a 00000000
|
||||
DIFF +0040 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000001 00000000 00000000 00000000
|
||||
+0050 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
DIFF +0060 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00100000 00200000 00000000 00000004
|
||||
DIFF +0070 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00040000 00080000 00000000 00400000
|
||||
|
||||
=== addr 0x828f4100 (canary heap=v80000000 status=committed) ===
|
||||
DIFF +0000 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 00000001 00000000 00000000
|
||||
DIFF +0010 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 3f19999a 00000000 3f19999a 00000000
|
||||
DIFF +0020 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 3f19999a 00000000 3f19999a 00000000
|
||||
DIFF +0030 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000001 00000000 00000000 00000000
|
||||
+0040 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
DIFF +0050 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00100000 00200000 00000000 00000004
|
||||
DIFF +0060 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00040000 00080000 00000000 00400000
|
||||
DIFF +0070 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00800000 00000001 00020000 00000008
|
||||
|
||||
=== addr 0x828f4800 (canary heap=v80000000 status=committed) ===
|
||||
DIFF +0000 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 01c60e66 4ee94000 00000000 405427c0
|
||||
+0010 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
DIFF +0020 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : ffffffff 00000000 00000000 00000014
|
||||
DIFF +0030 canary: 00000000 00000000 01010000 00000000
|
||||
DIFF ours : 00000001 00000000 01000000 00000000
|
||||
DIFF +0040 canary: 58454e00 f8000034 ffffffff 00000000
|
||||
DIFF ours : 00000000 00000000 ffffffff 00000000
|
||||
DIFF +0050 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 00000000 00000000 4024a2e0 00000008
|
||||
DIFF +0060 canary: 00000000 00000000 00000000 bc365180
|
||||
DIFF ours : 00000000 00000000 00000000 4024a1a0
|
||||
DIFF +0070 canary: 00000003 00000000 bc3651e0 00000000
|
||||
DIFF ours : 0000000f 00000000 4024a200 00000000
|
||||
|
||||
=== addr 0x828f4838 (canary heap=v80000000 status=committed) ===
|
||||
DIFF +0000 canary: 01010000 00000000 58454e00 f8000034
|
||||
DIFF ours : 01000000 00000000 00000000 00000000
|
||||
+0010 canary: ffffffff 00000000 00000000 00000000
|
||||
ours : ffffffff 00000000 00000000 00000000
|
||||
DIFF +0020 canary: 00000000 00000000 00000000 00000000
|
||||
DIFF ours : 4024a2e0 00000008 00000000 00000000
|
||||
DIFF +0030 canary: 00000000 bc365180 00000003 00000000
|
||||
DIFF ours : 00000000 4024a1a0 0000000f 00000000
|
||||
DIFF +0040 canary: bc3651e0 00000000 00000000 bc3652e0
|
||||
DIFF ours : 4024a200 00000000 00000000 40542240
|
||||
DIFF +0050 canary: 00000008 00000000 00000002 00000002
|
||||
DIFF ours : 00000010 00000000 0000000f 0000000f
|
||||
DIFF +0060 canary: 00000000 f800002c f8000028 00000001
|
||||
DIFF ours : 00000000 00001030 00001028 00000001
|
||||
DIFF +0070 canary: 00000000 00000000 00000000 00000001
|
||||
DIFF ours : 00000000 00000001 828f4070 00000001
|
||||
|
||||
=== addr 0x828f4900 (canary heap=v80000000 status=committed) ===
|
||||
+0000 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0010 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0020 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0030 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0040 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0050 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0060 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0070 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
|
||||
=== addr 0x828f4ab0 (canary heap=v80000000 status=committed) ===
|
||||
DIFF +0000 canary: 40000000 00000000 00000000 825fb898
|
||||
DIFF ours : 40005000 00000000 00000000 825fb898
|
||||
+0010 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0020 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0030 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0040 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0050 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0060 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0070 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
|
||||
=== addr 0x828fbc00 (canary heap=v80000000 status=committed) ===
|
||||
+0000 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0010 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0020 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0030 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0040 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0050 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0060 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0070 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
|
||||
=== addr 0x828fbc80 (canary heap=v80000000 status=committed) ===
|
||||
+0000 canary: 00000000 00000000 00000000 00000000
|
||||
ours : 00000000 00000000 00000000 00000000
|
||||
+0010 canary: 58544844 00000001 00000000 535107d4
|
||||
ours : 58544844 00000001 00000000 535107d4
|
||||
+0020 canary: 00000001 00010000 00970000 00000000
|
||||
ours : 00000001 00010000 00970000 00000000
|
||||
+0030 canary: 00000000 00000000 00000000 58414348
|
||||
ours : 00000000 00000000 00000000 58414348
|
||||
+0040 canary: 00000001 0000036a 00180001 00020003
|
||||
ours : 00000001 0000036a 00180001 00020003
|
||||
+0050 canary: 00630000 00010014 00000000 000c0000
|
||||
ours : 00630000 00010014 00000000 000c0000
|
||||
+0060 canary: 00000000 00000000 00000000 00000002
|
||||
ours : 00000000 00000000 00000000 00000002
|
||||
+0070 canary: 00040005 00640000 00020014 00000000
|
||||
ours : 00040005 00640000 00020014 00000000
|
||||
|
||||
=== TOTAL DIFFERING ROWS: 100 ===
|
||||
98
audit-runs/audit-023-canary-diff/diff_canary_ours.py
Normal file
98
audit-runs/audit-023-canary-diff/diff_canary_ours.py
Normal file
@@ -0,0 +1,98 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
Compare canary's memory dump (Memory::Save format) against our --dump-addr
|
||||
output for a list of target addresses. Output unified diff highlighting
|
||||
divergent 4-byte words.
|
||||
"""
|
||||
import re
|
||||
import struct
|
||||
import sys
|
||||
sys.path.insert(0, '/home/fabi/RE Project Sylpheed/xenia-rs/audit-runs/audit-023-canary-diff')
|
||||
from parse_dump import parse, read_addr
|
||||
|
||||
DUMP_LOG_RE = re.compile(r'^\s*addr=0x([0-9a-fA-F]+)\s*$')
|
||||
DUMP_LINE_RE = re.compile(r'^\s*\+0x([0-9a-fA-F]+):\s*((?:[0-9a-f]{2} ){15}[0-9a-f]{2})')
|
||||
|
||||
def parse_ours_log(path):
|
||||
"""Parse ours' dump-addr log into {addr -> bytes}."""
|
||||
with open(path) as f:
|
||||
cur_addr = None
|
||||
cur_bytes = bytearray()
|
||||
out = {}
|
||||
for line in f:
|
||||
m = DUMP_LOG_RE.match(line)
|
||||
if m:
|
||||
if cur_addr is not None and cur_bytes:
|
||||
out[cur_addr] = bytes(cur_bytes)
|
||||
cur_addr = int(m.group(1), 16)
|
||||
cur_bytes = bytearray()
|
||||
continue
|
||||
m = DUMP_LINE_RE.match(line)
|
||||
if m and cur_addr is not None:
|
||||
hexbytes = m.group(2).split()
|
||||
cur_bytes.extend(int(b, 16) for b in hexbytes)
|
||||
if cur_addr is not None and cur_bytes:
|
||||
out[cur_addr] = bytes(cur_bytes)
|
||||
return out
|
||||
|
||||
def fmt(addr, bytes_):
|
||||
"""Return list of (offset, [4*be32 strings]) tuples."""
|
||||
rows = []
|
||||
for i in range(0, len(bytes_), 16):
|
||||
row = bytes_[i:i+16]
|
||||
words = []
|
||||
for w in range(0, len(row), 4):
|
||||
if w + 4 <= len(row):
|
||||
words.append(f"{struct.unpack('>I', row[w:w+4])[0]:08x}")
|
||||
rows.append((addr + i, words))
|
||||
return rows
|
||||
|
||||
def main():
|
||||
canary_dump = sys.argv[1] if len(sys.argv) > 1 else '/tmp/audit-023-canary-memory.dump'
|
||||
ours_log = sys.argv[2] if len(sys.argv) > 2 else '/home/fabi/RE Project Sylpheed/xenia-rs/audit-runs/audit-023-canary-diff/ours-dump.log'
|
||||
extra_log = sys.argv[3] if len(sys.argv) > 3 else '/home/fabi/RE Project Sylpheed/xenia-rs/audit-runs/audit-023-canary-diff/ours-extra.log'
|
||||
|
||||
heap_index, data = parse(canary_dump)
|
||||
print()
|
||||
ours = parse_ours_log(ours_log)
|
||||
if extra_log:
|
||||
try:
|
||||
ours.update(parse_ours_log(extra_log))
|
||||
except FileNotFoundError:
|
||||
pass
|
||||
|
||||
diffs_total = 0
|
||||
for addr in sorted(ours.keys()):
|
||||
our_bytes = ours[addr]
|
||||
n = len(our_bytes)
|
||||
canary_bytes, name, _, _, status = read_addr(heap_index, data, addr, n)
|
||||
print(f"\n=== addr {addr:#010x} (canary heap={name} status={status}) ===")
|
||||
if canary_bytes is None:
|
||||
print(f" canary: {status}")
|
||||
continue
|
||||
canary_rows = fmt(addr, canary_bytes)
|
||||
our_rows = fmt(addr, our_bytes)
|
||||
for (a1, w1), (a2, w2) in zip(canary_rows, our_rows):
|
||||
assert a1 == a2
|
||||
diff_marks = []
|
||||
for c, o in zip(w1, w2):
|
||||
if c == o:
|
||||
diff_marks.append(" ")
|
||||
else:
|
||||
diff_marks.append(" !! ")
|
||||
row_has_diff = any(c != o for c, o in zip(w1, w2))
|
||||
if row_has_diff:
|
||||
diffs_total += 1
|
||||
canary_line = " ".join(w1)
|
||||
our_line = " ".join(w2)
|
||||
mark = "DIFF " if row_has_diff else " "
|
||||
print(f" {mark}+{a1-addr:04x} canary: {canary_line}")
|
||||
print(f" {mark} ours : {our_line}")
|
||||
if row_has_diff:
|
||||
marks = "".join(f" {m} " for m in diff_marks).rstrip()
|
||||
# Print marker line if useful
|
||||
# print(f" {marks}")
|
||||
print(f"\n=== TOTAL DIFFERING ROWS: {diffs_total} ===")
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
653
audit-runs/audit-023-canary-diff/ours-dump.err
Normal file
653
audit-runs/audit-023-canary-diff/ours-dump.err
Normal file
@@ -0,0 +1,653 @@
|
||||
Finished `release` profile [optimized] target(s) in 0.21s
|
||||
Running `target/release/xenia-rs exec sylpheed.iso --halt-on-deadlock --dump-addr=0x828F4070,0x828F40B0,0x828F40C0,0x828F40D0,0x828F40E0,0x828F40F0,0x828F4100,0x828E1F08,0x828F3D08,0x828F0000,0x828F4838,0x828F4ab0 -n 50000000`
|
||||
[2m2026-05-07T18:36:51.361020Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mload_xex_data[0m: [2mxenia_rs[0m[2m:[0m detected disc image, extracting default.xex [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:36:51.365877Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m XEX file format [3mcompression[0m[2m=[0m"normal (LZX)" [3mencryption[0m[2m=[0m"normal (AES)" [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:36:51.365894Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m loading XEX [3mentry[0m[2m=[0m0x824ab748 [3mbase[0m[2m=[0m0x82000000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:36:51.433949Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mload_image[0m:[1mload_normal_compressed[0m: [2mxenia_xex::loader[0m[2m:[0m LZX decompressed: 3428942 -> 9568256 bytes [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mbytes[0m[2m=[0m3497984[0m [2m[3mbytes_in[0m[2m=[0m3485696[0m
|
||||
[2m2026-05-07T18:36:51.435719Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mload_image[0m: [2mxenia_xex::loader[0m[2m:[0m image loaded [3mbytes_in[0m[2m=[0m3485696 [3mbytes_out[0m[2m=[0m9568256 [3mratio[0m[2m=[0m2.745005875440658 [3melapsed_ms[0m[2m=[0m66.0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mbytes[0m[2m=[0m3497984[0m
|
||||
[2m2026-05-07T18:36:51.443023Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m import thunks mapped [3mthunks[0m[2m=[0m194 [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:36:51.448146Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m dump addresses armed: 12 (0x828f4070, 0x828f40b0, 0x828f40c0, 0x828f40d0, 0x828f40e0, 0x828f40f0, 0x828f4100, 0x828e1f08, 0x828f3d08, 0x828f0000, 0x828f4838, 0x828f4ab0) [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:36:51.449654Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m starting execution [3mlimit[0m[2m=[0m50000000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:36:51.449666Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m gpu: threaded backend — spawning worker thread [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:36:51.454422Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtAllocateVirtualMemory: base=0x40005000 size=0x100000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.454452Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtAllocateVirtualMemory: base=0x40005000 size=0x10000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.454521Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m XexCheckExecutablePrivilege [3mpriv[0m[2m=[0m10 [3mflags[0m[2m=[0m0x00000400 [3mresult[0m[2m=[0m1 [3mlr[0m[2m=[0m0x824ab598 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.659459Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x1008 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.659513Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x100c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.659755Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x1010 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.660068Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="Cache0/" err=File not found: Cache0/ handle=0x1014 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.660085Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m XexCheckExecutablePrivilege [3mpriv[0m[2m=[0m11 [3mflags[0m[2m=[0m0x00000400 [3mresult[0m[2m=[0m0 [3mlr[0m[2m=[0m0x824a99a4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.660105Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::xam[0m[2m:[0m XamTaskSchedule: args v1=0x02080002 v2=0x00000000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.660132Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=2 on hw=1 entry=0x824a93c8 start_ctx=0x828a28f0 suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.660142Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::xam[0m[2m:[0m XamTaskSchedule: tid=2 handle=0x1018 hw=1 callback=0x824a93c8 message=0x828a28f0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.660274Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x101c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.660287Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtAllocateVirtualMemory: base=0x4acc5000 size=0xff000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.660398Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=3 on hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.660406Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=3 handle=0x1024 hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.661061Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x102c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.661085Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=4 on hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.661091Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=4 handle=0x1030 hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.661133Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1034 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.661205Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1038 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.661290Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x103c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.661352Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1040 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.661752Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="config.ini" size=400 handle=0x1044 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.662020Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=5 on hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.662035Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=5 handle=0x1054 hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.662622Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 400 bytes from "config.ini" @ 0 (handle=0x1044) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.663361Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/d4ea4615e46ee8ca.tmp" err=File not found: cache:/d4ea4615e46ee8ca.tmp handle=0x105c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.663408Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1060 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.663482Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1064 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.663500Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1068 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.663516Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x106c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.663637Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/d4ea4615" err=File not found: cache:/d4ea4615 handle=0x1070 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.663648Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/d4ea4615/e" err=File not found: cache:/d4ea4615/e handle=0x1074 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.663661Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/d4ea4615e46ee8ca.tmp" err=File not found: cache:/d4ea4615e46ee8ca.tmp handle=0x1078 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.667150Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="dat/files.tbl" err=File not found: dat/files.tbl handle=0x107c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.669038Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="dat/tables.pak" size=964 handle=0x1088 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.669270Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 964 bytes from "dat/tables.pak" @ 0 (handle=0x1088) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.669774Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45ce534ffea.tmp" err=File not found: cache:/69d8e45ce534ffea.tmp handle=0x1090 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.669806Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1094 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.669958Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1098 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.669987Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x109c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.670020Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x10a0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.670158Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x10a4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.670169Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c/e" err=File not found: cache:/69d8e45c/e handle=0x10a8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.670179Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45ce534ffea.tmp" err=File not found: cache:/69d8e45ce534ffea.tmp handle=0x10ac [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.677412Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="dat/tables.p00" size=435498 handle=0x10b4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.677687Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 2048 bytes from "dat/tables.p00" @ 206848 (handle=0x10b4) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.678022Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=6 on hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.678031Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=6 handle=0x10cc hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.678652Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c9355f2f8.tmp" err=File not found: cache:/69d8e45c9355f2f8.tmp handle=0x10d0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.678700Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x10d4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.678938Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x10d8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.678974Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x10dc [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.679021Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x10e0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.679251Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x10e4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.679263Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x10e8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.679278Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c9355f2f8.tmp" err=File not found: cache:/69d8e45c9355f2f8.tmp handle=0x10ec [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.683493Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m VdSetGraphicsInterruptCallback(0x824be9a0, 0x4244df00) — callback armed [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.683649Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=7 on hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false pri=0 mask=0x04 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.683650Z[0m [32m INFO[0m [2mxenia_gpu::gpu_system[0m[2m:[0m gpu: ring initialized [3mbase[0m[2m=[0m0x0adcc000 [3msize_bytes[0m[2m=[0m4096 [3msize_dwords[0m[2m=[0m1024
|
||||
[2m2026-05-07T18:36:51.683657Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=7 handle=0x10fc hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false aff=0x04 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:51.683662Z[0m [32m INFO[0m [2mxenia_gpu::gpu_system[0m[2m:[0m gpu: rptr writeback enabled [3maddr[0m[2m=[0m0x008619fc [3mblock_dwords[0m[2m=[0m64
|
||||
[2m2026-05-07T18:36:52.585024Z[0m [32m INFO[0m [2mxenia_gpu::gpu_system[0m[2m:[0m gpu: XE_SWAP (kernel-direct) [3mframe[0m[2m=[0m1 [3mfb[0m[2m=[0m0x0b1d8000 [3mwidth[0m[2m=[0m1280 [3mheight[0m[2m=[0m720
|
||||
[2m2026-05-07T18:36:52.604873Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=8 on hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.604896Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=8 handle=0x1108 hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.606135Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 102400 bytes from "dat/tables.p00" @ 86016 (handle=0x10b4) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.606977Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/aab216c3a2c8c185.tmp" err=File not found: cache:/aab216c3a2c8c185.tmp handle=0x111c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.607034Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1120 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.607340Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1124 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.607381Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1128 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.607428Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x112c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.607676Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/aab216c3" err=File not found: cache:/aab216c3 handle=0x1130 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.607688Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/aab216c3/a" err=File not found: cache:/aab216c3/a handle=0x1134 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.607700Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/aab216c3a2c8c185.tmp" err=File not found: cache:/aab216c3a2c8c185.tmp handle=0x1138 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.773535Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="dat/sound.pak" size=114244 handle=0x1140 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.773824Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 114244 bytes from "dat/sound.pak" @ 0 (handle=0x1140) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.778339Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c939a9dcc.tmp" err=File not found: cache:/69d8e45c939a9dcc.tmp handle=0x1148 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.778376Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x114c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.778601Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1150 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.778629Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1154 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.778662Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1158 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.778797Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x115c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.778808Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x1160 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.778819Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c939a9dcc.tmp" err=File not found: cache:/69d8e45c939a9dcc.tmp handle=0x1164 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.833105Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="dat/sound.p04" size=14903296 handle=0x116c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.833444Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 2048 bytes from "dat/sound.p04" @ 5931008 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.834282Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c973a5c0a.tmp" err=File not found: cache:/69d8e45c973a5c0a.tmp handle=0x117c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.834350Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1180 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.834766Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1184 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.834804Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1188 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.834861Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x118c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.835096Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x1190 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.835109Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x1194 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.835121Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c973a5c0a.tmp" err=File not found: cache:/69d8e45c973a5c0a.tmp handle=0x1198 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.873962Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=9 on hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true pri=0 mask=0x10 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.873988Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=9 handle=0x119c hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true aff=0x10 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.874023Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=10 on hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true pri=0 mask=0x20 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.874028Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=10 handle=0x11a0 hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true aff=0x20 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.874321Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m XAudioRegisterRenderDriverClient: index=0 callback=0x824d6640 arg=0x41e9dd5c wrapped=0x4b9f0000 driver=0x41550000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.928868Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 5933056 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.929071Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 6064128 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.929270Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 6195200 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.929441Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 6326272 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.929602Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 6457344 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.929766Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 6588416 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.929949Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 6719488 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.930111Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 6850560 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.930271Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 6981632 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.930433Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 7112704 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.930595Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 7243776 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.930756Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 7374848 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.930922Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 7505920 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.931084Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 7636992 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.931246Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 7768064 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.931407Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 7899136 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.931570Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 8030208 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.931731Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 8161280 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.931897Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 8292352 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.932059Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 8423424 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.932225Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 8554496 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.932390Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 8685568 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.932560Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 8816640 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.932722Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 8947712 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.932956Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 9078784 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.933118Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 9209856 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.933278Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 9340928 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.933438Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 9472000 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.933599Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 9603072 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.933764Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 9734144 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.933943Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 9865216 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.934121Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 9996288 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.934284Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 10127360 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.934445Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 10258432 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.934607Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 10389504 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.934769Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 10520576 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.934964Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 10651648 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.935137Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 10782720 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.935299Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 10913792 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.935460Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 11044864 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.935622Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 11175936 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.935784Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 11307008 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.935957Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 11438080 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.936120Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 11569152 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.936281Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 11700224 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.936443Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 11831296 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.936605Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 11962368 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.936765Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 12093440 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.936933Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 12224512 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.937094Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 12355584 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.937254Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 12486656 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.937415Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 12617728 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.937576Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 12748800 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.937739Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 12879872 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.937904Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 13010944 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.938067Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 13142016 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.938228Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 13273088 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.938388Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 13404160 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.938549Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 13535232 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.938709Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 13666304 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.938873Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 13797376 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.939034Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 13928448 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.939196Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 14059520 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.939357Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 14190592 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.939518Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 14321664 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.939680Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 14452736 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.939841Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 14583808 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.940005Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 14714880 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.940138Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 57344 bytes from "dat/sound.p04" @ 14845952 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.941977Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=11 on hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.941987Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=11 handle=0x12c0 hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.942285Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=12 on hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.942293Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=12 handle=0x12cc hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.943847Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 2048 bytes from "dat/tables.p00" @ 77824 (handle=0x10b4) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.944665Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/aab216c35ee70e0a.tmp" err=File not found: cache:/aab216c35ee70e0a.tmp handle=0x12e4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.944713Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x12e8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.945175Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x12ec [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.945214Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x12f0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.945268Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x12f4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.945523Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/aab216c3" err=File not found: cache:/aab216c3 handle=0x12f8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.945540Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/aab216c3/5" err=File not found: cache:/aab216c3/5 handle=0x12fc [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.945553Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/aab216c35ee70e0a.tmp" err=File not found: cache:/aab216c35ee70e0a.tmp handle=0x1300 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.946325Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=13 on hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.946334Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=13 handle=0x1304 hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.946438Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=14 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.946453Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=14 handle=0x130c hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.946492Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=15 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.946497Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=15 handle=0x1310 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.950745Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="hidden/Resource3D/Base.xpr" size=8507404 handle=0x1318 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.952605Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="dat/GP_TITLE.pak" size=208 handle=0x1324 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.952853Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 208 bytes from "dat/GP_TITLE.pak" @ 0 (handle=0x1324) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.953379Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45cc295ead8.tmp" err=File not found: cache:/69d8e45cc295ead8.tmp handle=0x132c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.953416Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1330 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.953734Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1334 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.953762Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1338 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.953801Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x133c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.953943Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x1340 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.953956Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c/c" err=File not found: cache:/69d8e45c/c handle=0x1344 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.953966Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45cc295ead8.tmp" err=File not found: cache:/69d8e45cc295ead8.tmp handle=0x1348 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.954532Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 2048 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:52.955183Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.019359Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="dat/GP_TITLE.p00" size=12283578 handle=0x1358 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.027572Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="hidden/Resource3D/ptc_pack.xpr" size=20654092 handle=0x135c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.031425Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 131072 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.031659Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 262144 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.031907Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 393216 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.032208Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 524288 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.032464Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 655360 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.032721Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 786432 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.032980Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 917504 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.033250Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1048576 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.033478Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1179648 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.033703Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1310720 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.033935Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1441792 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.034179Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1572864 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.034471Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1703936 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.039463Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1832960 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.044068Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1964032 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.044240Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2095104 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.044401Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2226176 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.044560Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2357248 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.044720Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2488320 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.044890Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2619392 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.045049Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2750464 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.045217Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2881536 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.045415Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3012608 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.045577Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3143680 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.045736Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3274752 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.045902Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3405824 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.046062Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3536896 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.046231Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3667968 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.046476Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3799040 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.046638Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3930112 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.046798Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4061184 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.046963Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4192256 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.047123Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4323328 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.047280Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4454400 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.047455Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4585472 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.047617Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4716544 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.047775Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4847616 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.047938Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4978688 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.048098Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5109760 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.048260Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5240832 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.048419Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5371904 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.048578Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5502976 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.048737Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5634048 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.048902Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5765120 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.049061Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5896192 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.049219Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6027264 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.049377Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6158336 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.049539Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6289408 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.049697Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6420480 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.049856Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6551552 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.050021Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6682624 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.050180Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6813696 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.050340Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6944768 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.050498Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7075840 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.050656Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7206912 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.050815Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7337984 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.050981Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7469056 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.051140Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7600128 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.051346Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7731200 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.051511Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7862272 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.051742Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7993344 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.051946Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8124416 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.052113Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8255488 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.052307Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 120844 bytes from "hidden/Resource3D/Base.xpr" @ 8386560 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.055471Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 51200 bytes from "dat/GP_TITLE.p00" @ 0 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.057735Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002cdba806e.tmp" err=File not found: cache:/87719002cdba806e.tmp handle=0x1498 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.057775Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x149c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.058126Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x14a0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.058154Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x14a4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.058194Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x14a8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.058330Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x14ac [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.058342Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x14b0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.058352Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002cdba806e.tmp" err=File not found: cache:/87719002cdba806e.tmp handle=0x14b4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.058750Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 2048 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.059203Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 51200 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.061595Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="hidden/Resource3D/Common.xpr" size=593932 handle=0x14c0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.064883Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 102400 bytes from "dat/GP_TITLE.p00" @ 182272 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.073632Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002cec0a96e.tmp" err=File not found: cache:/87719002cec0a96e.tmp handle=0x14cc [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.073670Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x14d0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.074053Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x14d4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.074087Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x14d8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.074128Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x14dc [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.074267Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x14e0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.074279Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x14e4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.074289Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002cec0a96e.tmp" err=File not found: cache:/87719002cec0a96e.tmp handle=0x14e8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.074684Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 507904 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.080360Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 638976 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.080531Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 770048 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.080701Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 901120 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.080882Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1032192 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.081149Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1163264 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.081413Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1294336 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.081592Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1425408 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.081878Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1556480 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.082050Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1687552 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.082217Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1818624 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.082383Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1949696 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.082554Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2080768 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.082723Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2211840 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.082908Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2342912 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.083080Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2473984 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.083280Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2605056 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.083452Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2736128 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.083621Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2867200 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.083785Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2998272 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.083946Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 100352 bytes from "dat/GP_TITLE.p00" @ 3129344 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.183480Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002a60fcb85.tmp" err=File not found: cache:/87719002a60fcb85.tmp handle=0x1540 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.183539Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1544 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.183959Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1548 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.183987Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x154c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.184032Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1550 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.184172Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1554 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.184183Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002/a" err=File not found: cache:/87719002/a handle=0x1558 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.184199Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002a60fcb85.tmp" err=File not found: cache:/87719002a60fcb85.tmp handle=0x155c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.184683Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 38912 bytes from "dat/GP_TITLE.p00" @ 468992 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.186763Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002285d8849.tmp" err=File not found: cache:/87719002285d8849.tmp handle=0x1564 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.186837Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1568 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.187302Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x156c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.187342Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1570 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.187387Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1574 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.187525Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1578 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.187536Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002/2" err=File not found: cache:/87719002/2 handle=0x157c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.187546Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002285d8849.tmp" err=File not found: cache:/87719002285d8849.tmp handle=0x1580 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.187988Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3229696 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.193190Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3360768 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.193368Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3491840 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.193535Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3622912 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.193700Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3753984 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.193869Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3885056 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.194035Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4016128 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.194201Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4147200 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.194370Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4278272 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.194535Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4409344 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.194681Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 88064 bytes from "dat/GP_TITLE.p00" @ 4540416 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.245174Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002a715f485.tmp" err=File not found: cache:/87719002a715f485.tmp handle=0x15b0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.245235Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x15b4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.245713Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x15b8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.245742Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x15bc [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.245796Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x15c0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.245943Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x15c4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.245956Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002/a" err=File not found: cache:/87719002/a handle=0x15c8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.245967Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002a715f485.tmp" err=File not found: cache:/87719002a715f485.tmp handle=0x15cc [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.246466Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_rs[0m[2m:[0m HW thread returned to LR sentinel — marking exited [3mhw_id[0m[2m=[0m1 [3mtid[0m[2m=[0mSome(12) [3mis_main[0m[2m=[0mfalse [3mcycle[0m[2m=[0m18593977 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.246705Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 116736 bytes from "dat/GP_TITLE.p00" @ 284672 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.246745Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=16 on hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.246754Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=16 handle=0x15dc hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.249051Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=17 on hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.249062Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=17 handle=0x15ec hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.254117Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002cf2a8ccd.tmp" err=File not found: cache:/87719002cf2a8ccd.tmp handle=0x15f8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.254232Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x15fc [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.255917Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1600 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.255995Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1604 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.256126Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=18 on hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.256135Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=18 handle=0x1614 hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.256174Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1618 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.256240Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=19 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.256247Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=19 handle=0x1624 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.256317Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=20 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.256324Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=20 handle=0x162c hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.256679Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1630 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.256697Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x1634 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.256717Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002cf2a8ccd.tmp" err=File not found: cache:/87719002cf2a8ccd.tmp handle=0x1638 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:53.257984Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 67584 bytes from "dat/GP_TITLE.p00" @ 401408 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.158394Z[0m [32m INFO[0m [2mxenia_gpu::gpu_system[0m[2m:[0m gpu: XE_SWAP (kernel-direct) [3mframe[0m[2m=[0m2 [3mfb[0m[2m=[0m0x0b1d8000 [3mwidth[0m[2m=[0m1280 [3mheight[0m[2m=[0m720
|
||||
[2m2026-05-07T18:36:54.164074Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/8771900201a2db9c.tmp" err=File not found: cache:/8771900201a2db9c.tmp handle=0x1640 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.164199Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1644 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.166093Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1648 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.166167Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x164c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.166321Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1650 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.166824Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1654 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.166843Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002/0" err=File not found: cache:/87719002/0 handle=0x1658 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.166860Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/8771900201a2db9c.tmp" err=File not found: cache:/8771900201a2db9c.tmp handle=0x165c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.168330Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.176419Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 131072 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.176979Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 262144 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.177570Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 393216 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.177960Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 524288 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.178339Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 655360 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.178716Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 786432 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.179102Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 917504 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.179491Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1048576 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.179880Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1179648 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.180264Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1310720 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.180655Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1441792 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.181052Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1572864 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.181437Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1703936 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.181819Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1835008 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.182206Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1966080 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.182588Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2097152 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.182978Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2228224 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.183362Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2359296 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.183746Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2490368 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.184183Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2621440 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.184652Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2752512 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.185049Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2883584 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.185436Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3014656 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.185823Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3145728 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.186215Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3276800 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.186606Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3407872 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.186999Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3538944 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.187407Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3670016 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.188048Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3801088 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.188442Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3932160 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.188827Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4063232 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.189226Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4194304 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.189610Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4325376 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.190004Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4456448 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.190431Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4587520 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.190819Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4718592 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.191211Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4849664 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.191593Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4980736 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.192034Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5111808 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.192495Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5242880 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.192891Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5373952 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.193281Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5505024 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.193669Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5636096 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.194062Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5767168 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.194458Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5898240 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.194843Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6029312 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.195234Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6160384 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.195620Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6291456 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.196091Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 38912 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6422528 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.199119Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6459392 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.207519Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6590464 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.207922Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6721536 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.208311Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6852608 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.208696Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6983680 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.209082Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7114752 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.209462Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7245824 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.209844Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7376896 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.210243Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7507968 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.210623Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7639040 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.211014Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7770112 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.211389Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7901184 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.211768Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8032256 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.212159Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8163328 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.212543Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8294400 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.212942Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8425472 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.213328Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8556544 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.213715Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8687616 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.214111Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8818688 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.214502Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8949760 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.214885Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9080832 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.215272Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9211904 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.215656Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9342976 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.216044Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9474048 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.216428Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9605120 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.216824Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9736192 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.217216Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9867264 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.217602Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9998336 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.217990Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10129408 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.218372Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10260480 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.218755Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10391552 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.219143Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10522624 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.219527Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10653696 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.219929Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10784768 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.220313Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10915840 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.220699Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11046912 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.221121Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11177984 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.221507Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11309056 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.221892Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11440128 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.222274Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11571200 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.222657Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11702272 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.223043Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11833344 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.223433Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11964416 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.223814Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12095488 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.224200Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12226560 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.224582Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12357632 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.224962Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12488704 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.225346Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12619776 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.225728Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12750848 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.226141Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12881920 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.226521Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13012992 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.226910Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13144064 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.227293Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13275136 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.227675Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13406208 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.228060Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13537280 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.228442Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13668352 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.228820Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13799424 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.229232Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13930496 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.229611Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14061568 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.230002Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14192640 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.230389Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14323712 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.230806Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14454784 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.231239Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14585856 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.231641Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14716928 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.232040Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14848000 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.232429Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14979072 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.232815Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15110144 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.233206Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15241216 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.233592Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15372288 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.233982Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15503360 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.234370Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15634432 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.234760Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15765504 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.235148Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15896576 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.235572Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16027648 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.235960Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16158720 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.236347Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16289792 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.236739Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16420864 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.237122Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16551936 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.237504Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16683008 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.237887Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16814080 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.238326Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16945152 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.238710Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17076224 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.239118Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17207296 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.239502Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17338368 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.239881Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17469440 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.240263Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17600512 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.240648Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17731584 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.241037Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17862656 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.241426Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17993728 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.241810Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18124800 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.242209Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18255872 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.242595Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18386944 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.242978Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18518016 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.243371Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18649088 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.243756Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18780160 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.244144Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18911232 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.244523Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19042304 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.244911Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19173376 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.245296Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19304448 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.245679Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19435520 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.246068Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19566592 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.246556Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19697664 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.246952Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19828736 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.247340Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19959808 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.247724Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20090880 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.248113Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20221952 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.248494Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20353024 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.248881Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20484096 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.249326Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 38924 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20615168 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:54.253503Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 2048 bytes from "hidden/Resource3D/Common.xpr" @ 0 (handle=0x14c0) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:55.293847Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_rs[0m[2m:[0m reached max instruction count [3mlimit[0m[2m=[0m50000000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:36:55.295612Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m in-memory trace log [3mentries[0m[2m=[0m0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:36:55.296133Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m exec complete [3mwall_ms[0m[2m=[0m3935 [3minstructions[0m[2m=[0m50000011 [3mimport_calls[0m[2m=[0m407247 [3munimplemented[0m[2m=[0m0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:36:55.307548Z[0m [32m INFO[0m [2mxenia_rs::observability[0m[2m:[0m metrics summary:
|
||||
histogram xex.load_image_ms = count=1 sum=66.000 min=66.000 max=66.000 mean=66.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} = 79290
|
||||
counter kernel.calls{name=RtlLeaveCriticalSection} = 79289
|
||||
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} = 347
|
||||
counter kernel.calls{name=NtClose} = 548
|
||||
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} = 35
|
||||
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} = 94813
|
||||
counter kernel.calls{name=NtCreateSemaphore} = 10
|
||||
counter kernel.calls{name=NtQueryDirectoryFile} = 1
|
||||
counter kernel.calls{name=NtQueryInformationFile} = 380
|
||||
counter kernel.calls{name=NtQueryFullAttributesFile} = 16
|
||||
counter kernel.calls{name=NtWaitForMultipleObjectsEx} = 55671
|
||||
counter kernel.calls{name=NtDuplicateObject} = 36
|
||||
counter kernel.calls{name=NtReleaseSemaphore} = 393
|
||||
counter kernel.calls{name=NtSetInformationFile} = 77
|
||||
counter kernel.calls{name=NtSetEvent} = 334
|
||||
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} = 295
|
||||
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} = 94757
|
||||
counter kernel.calls{name=XamUserGetSigninState} = 2
|
||||
counter kernel.calls{name=XamUserGetXUID} = 1
|
||||
counter kernel.calls{name=XamUserReadProfileSettings} = 2
|
||||
653
audit-runs/audit-023-canary-diff/ours-extra.err
Normal file
653
audit-runs/audit-023-canary-diff/ours-extra.err
Normal file
@@ -0,0 +1,653 @@
|
||||
Finished `release` profile [optimized] target(s) in 0.22s
|
||||
Running `target/release/xenia-rs exec sylpheed.iso --halt-on-deadlock --dump-addr=0x828F0000,0x828F1000,0x828F2000,0x828F3000,0x828F3100,0x828F3D00,0x828F3D80,0x828F3E00,0x828F3F00,0x828F4800,0x828F4900,0x828FBC00,0x828FBC80 -n 50000000`
|
||||
[2m2026-05-07T18:37:30.179004Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mload_xex_data[0m: [2mxenia_rs[0m[2m:[0m detected disc image, extracting default.xex [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:37:30.180373Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m XEX file format [3mcompression[0m[2m=[0m"normal (LZX)" [3mencryption[0m[2m=[0m"normal (AES)" [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:37:30.180385Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m loading XEX [3mentry[0m[2m=[0m0x824ab748 [3mbase[0m[2m=[0m0x82000000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:37:30.247809Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mload_image[0m:[1mload_normal_compressed[0m: [2mxenia_xex::loader[0m[2m:[0m LZX decompressed: 3428942 -> 9568256 bytes [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mbytes[0m[2m=[0m3497984[0m [2m[3mbytes_in[0m[2m=[0m3485696[0m
|
||||
[2m2026-05-07T18:37:30.248207Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mload_image[0m: [2mxenia_xex::loader[0m[2m:[0m image loaded [3mbytes_in[0m[2m=[0m3485696 [3mbytes_out[0m[2m=[0m9568256 [3mratio[0m[2m=[0m2.745005875440658 [3melapsed_ms[0m[2m=[0m67.0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mbytes[0m[2m=[0m3497984[0m
|
||||
[2m2026-05-07T18:37:30.252408Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m import thunks mapped [3mthunks[0m[2m=[0m194 [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:37:30.252530Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m dump addresses armed: 13 (0x828f0000, 0x828f1000, 0x828f2000, 0x828f3000, 0x828f3100, 0x828f3d00, 0x828f3d80, 0x828f3e00, 0x828f3f00, 0x828f4800, 0x828f4900, 0x828fbc00, 0x828fbc80) [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:37:30.252688Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m starting execution [3mlimit[0m[2m=[0m50000000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:37:30.252695Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m gpu: threaded backend — spawning worker thread [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:37:30.257621Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtAllocateVirtualMemory: base=0x40005000 size=0x100000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.257659Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtAllocateVirtualMemory: base=0x40005000 size=0x10000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.257748Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m XexCheckExecutablePrivilege [3mpriv[0m[2m=[0m10 [3mflags[0m[2m=[0m0x00000400 [3mresult[0m[2m=[0m1 [3mlr[0m[2m=[0m0x824ab598 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.464835Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x1008 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.464917Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x100c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.465353Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x1010 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.465940Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="Cache0/" err=File not found: Cache0/ handle=0x1014 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.465966Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m XexCheckExecutablePrivilege [3mpriv[0m[2m=[0m11 [3mflags[0m[2m=[0m0x00000400 [3mresult[0m[2m=[0m0 [3mlr[0m[2m=[0m0x824a99a4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.466000Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::xam[0m[2m:[0m XamTaskSchedule: args v1=0x02080002 v2=0x00000000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.466032Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=2 on hw=1 entry=0x824a93c8 start_ctx=0x828a28f0 suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.466048Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::xam[0m[2m:[0m XamTaskSchedule: tid=2 handle=0x1018 hw=1 callback=0x824a93c8 message=0x828a28f0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.466278Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x101c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.466296Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtAllocateVirtualMemory: base=0x4acc5000 size=0xff000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.466488Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=3 on hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.466500Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=3 handle=0x1024 hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.467556Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x102c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.467581Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=4 on hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.467587Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=4 handle=0x1030 hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.467628Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1034 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.467701Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1038 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.467787Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x103c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.467850Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1040 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.468139Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="config.ini" size=400 handle=0x1044 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.468244Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=5 on hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.468251Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=5 handle=0x1054 hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.468510Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 400 bytes from "config.ini" @ 0 (handle=0x1044) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.469103Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/d4ea4615e46ee8ca.tmp" err=File not found: cache:/d4ea4615e46ee8ca.tmp handle=0x105c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.469149Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1060 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.469222Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1064 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.469237Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1068 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.469253Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x106c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.469374Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/d4ea4615" err=File not found: cache:/d4ea4615 handle=0x1070 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.469386Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/d4ea4615/e" err=File not found: cache:/d4ea4615/e handle=0x1074 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.469396Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/d4ea4615e46ee8ca.tmp" err=File not found: cache:/d4ea4615e46ee8ca.tmp handle=0x1078 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.473042Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="dat/files.tbl" err=File not found: dat/files.tbl handle=0x107c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.474922Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="dat/tables.pak" size=964 handle=0x1088 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.475155Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 964 bytes from "dat/tables.pak" @ 0 (handle=0x1088) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.475660Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45ce534ffea.tmp" err=File not found: cache:/69d8e45ce534ffea.tmp handle=0x1090 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.475692Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1094 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.475829Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1098 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.475856Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x109c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.475902Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x10a0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.476037Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x10a4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.476049Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c/e" err=File not found: cache:/69d8e45c/e handle=0x10a8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.476058Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45ce534ffea.tmp" err=File not found: cache:/69d8e45ce534ffea.tmp handle=0x10ac [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.477172Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="dat/tables.p00" size=435498 handle=0x10b4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.477443Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 2048 bytes from "dat/tables.p00" @ 206848 (handle=0x10b4) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.477777Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=6 on hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.477785Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=6 handle=0x10cc hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.478404Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c9355f2f8.tmp" err=File not found: cache:/69d8e45c9355f2f8.tmp handle=0x10d0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.478454Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x10d4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.478692Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x10d8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.478729Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x10dc [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.478776Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x10e0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.479015Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x10e4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.479029Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x10e8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.479040Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c9355f2f8.tmp" err=File not found: cache:/69d8e45c9355f2f8.tmp handle=0x10ec [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.483284Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m VdSetGraphicsInterruptCallback(0x824be9a0, 0x4244df00) — callback armed [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.483448Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=7 on hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false pri=0 mask=0x04 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.483450Z[0m [32m INFO[0m [2mxenia_gpu::gpu_system[0m[2m:[0m gpu: ring initialized [3mbase[0m[2m=[0m0x0adcc000 [3msize_bytes[0m[2m=[0m4096 [3msize_dwords[0m[2m=[0m1024
|
||||
[2m2026-05-07T18:37:30.483456Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=7 handle=0x10fc hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false aff=0x04 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:30.483463Z[0m [32m INFO[0m [2mxenia_gpu::gpu_system[0m[2m:[0m gpu: rptr writeback enabled [3maddr[0m[2m=[0m0x008619fc [3mblock_dwords[0m[2m=[0m64
|
||||
[2m2026-05-07T18:37:31.384823Z[0m [32m INFO[0m [2mxenia_gpu::gpu_system[0m[2m:[0m gpu: XE_SWAP (kernel-direct) [3mframe[0m[2m=[0m1 [3mfb[0m[2m=[0m0x0b1d8000 [3mwidth[0m[2m=[0m1280 [3mheight[0m[2m=[0m720
|
||||
[2m2026-05-07T18:37:31.404693Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=8 on hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.404717Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=8 handle=0x1108 hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.405936Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 102400 bytes from "dat/tables.p00" @ 86016 (handle=0x10b4) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.406759Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/aab216c3a2c8c185.tmp" err=File not found: cache:/aab216c3a2c8c185.tmp handle=0x111c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.406818Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1120 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.407135Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1124 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.407176Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1128 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.407222Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x112c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.407465Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/aab216c3" err=File not found: cache:/aab216c3 handle=0x1130 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.407477Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/aab216c3/a" err=File not found: cache:/aab216c3/a handle=0x1134 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.407488Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/aab216c3a2c8c185.tmp" err=File not found: cache:/aab216c3a2c8c185.tmp handle=0x1138 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.576455Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="dat/sound.pak" size=114244 handle=0x1140 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.576747Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 114244 bytes from "dat/sound.pak" @ 0 (handle=0x1140) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.581208Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c939a9dcc.tmp" err=File not found: cache:/69d8e45c939a9dcc.tmp handle=0x1148 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.581251Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x114c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.581483Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1150 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.581512Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1154 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.581544Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1158 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.581679Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x115c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.581691Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x1160 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.581700Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c939a9dcc.tmp" err=File not found: cache:/69d8e45c939a9dcc.tmp handle=0x1164 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.592733Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="dat/sound.p04" size=14903296 handle=0x116c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.593245Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 2048 bytes from "dat/sound.p04" @ 5931008 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.594596Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c973a5c0a.tmp" err=File not found: cache:/69d8e45c973a5c0a.tmp handle=0x117c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.594677Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1180 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.595372Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1184 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.595437Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1188 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.595530Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x118c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.595915Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x1190 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.595936Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x1194 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.595955Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c973a5c0a.tmp" err=File not found: cache:/69d8e45c973a5c0a.tmp handle=0x1198 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.635604Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=9 on hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true pri=0 mask=0x10 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.635630Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=9 handle=0x119c hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true aff=0x10 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.635661Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=10 on hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true pri=0 mask=0x20 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.635667Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=10 handle=0x11a0 hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true aff=0x20 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.635934Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m XAudioRegisterRenderDriverClient: index=0 callback=0x824d6640 arg=0x41e9dd5c wrapped=0x4b9f0000 driver=0x41550000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.691739Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 5933056 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.691948Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 6064128 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.692150Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 6195200 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.692319Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 6326272 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.692479Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 6457344 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.692641Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 6588416 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.692801Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 6719488 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.692967Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 6850560 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.693127Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 6981632 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.693285Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 7112704 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.693443Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 7243776 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.693602Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 7374848 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.693760Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 7505920 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.693923Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 7636992 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.694084Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 7768064 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.694245Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 7899136 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.694434Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 8030208 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.694607Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 8161280 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.694789Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 8292352 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.695002Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 8423424 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.695162Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 8554496 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.695322Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 8685568 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.695557Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 8816640 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.695717Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 8947712 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.695879Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 9078784 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.696038Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 9209856 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.696197Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 9340928 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.696357Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 9472000 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.696516Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 9603072 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.696678Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 9734144 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.696837Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 9865216 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.697001Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 9996288 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.697159Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 10127360 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.697315Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 10258432 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.697475Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 10389504 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.697635Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 10520576 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.697794Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 10651648 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.697959Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 10782720 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.698119Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 10913792 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.698278Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 11044864 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.698435Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 11175936 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.698592Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 11307008 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.698752Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 11438080 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.698916Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 11569152 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.699079Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 11700224 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.699243Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 11831296 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.699405Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 11962368 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.699564Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 12093440 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.699722Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 12224512 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.699883Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 12355584 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.700041Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 12486656 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.700200Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 12617728 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.700359Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 12748800 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.700520Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 12879872 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.700680Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 13010944 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.700840Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 13142016 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.701000Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 13273088 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.701158Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 13404160 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.701316Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 13535232 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.701473Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 13666304 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.701634Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 13797376 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.701795Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 13928448 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.701959Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 14059520 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.702119Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 14190592 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.702278Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 14321664 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.702436Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 14452736 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.702593Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 14583808 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.702750Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/sound.p04" @ 14714880 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.702883Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 57344 bytes from "dat/sound.p04" @ 14845952 (handle=0x116c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.704677Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=11 on hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.704687Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=11 handle=0x12c0 hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.704987Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=12 on hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.704994Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=12 handle=0x12cc hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.706501Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 2048 bytes from "dat/tables.p00" @ 77824 (handle=0x10b4) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.707338Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/aab216c35ee70e0a.tmp" err=File not found: cache:/aab216c35ee70e0a.tmp handle=0x12e4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.707387Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x12e8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.707944Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x12ec [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.707987Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x12f0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.708042Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x12f4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.708386Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/aab216c3" err=File not found: cache:/aab216c3 handle=0x12f8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.708410Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/aab216c3/5" err=File not found: cache:/aab216c3/5 handle=0x12fc [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.708447Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/aab216c35ee70e0a.tmp" err=File not found: cache:/aab216c35ee70e0a.tmp handle=0x1300 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.709331Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=13 on hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.709342Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=13 handle=0x1304 hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.709434Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=14 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.709440Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=14 handle=0x130c hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.709477Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=15 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.709483Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=15 handle=0x1310 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.713487Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="hidden/Resource3D/Base.xpr" size=8507404 handle=0x1318 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.715104Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="dat/GP_TITLE.pak" size=208 handle=0x1324 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.715369Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 208 bytes from "dat/GP_TITLE.pak" @ 0 (handle=0x1324) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.716409Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45cc295ead8.tmp" err=File not found: cache:/69d8e45cc295ead8.tmp handle=0x132c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.716467Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1330 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.716971Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1334 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.717016Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1338 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.717078Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x133c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.717304Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x1340 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.717321Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45c/c" err=File not found: cache:/69d8e45c/c handle=0x1344 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.717337Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/69d8e45cc295ead8.tmp" err=File not found: cache:/69d8e45cc295ead8.tmp handle=0x1348 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.718266Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 2048 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.719285Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.724712Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="dat/GP_TITLE.p00" size=12283578 handle=0x1358 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.733117Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="hidden/Resource3D/ptc_pack.xpr" size=20654092 handle=0x135c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.737478Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 131072 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.737711Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 262144 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.737957Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 393216 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.738182Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 524288 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.738433Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 655360 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.738709Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 786432 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.738953Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 917504 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.739214Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1048576 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.739438Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1179648 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.739729Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1310720 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.739950Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1441792 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.740178Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1572864 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.740452Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1703936 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.744755Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1832960 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.748739Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1964032 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.748912Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2095104 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.749073Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2226176 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.749231Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2357248 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.749389Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2488320 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.749550Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2619392 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.749709Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2750464 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.749882Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2881536 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.750040Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3012608 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.750224Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3143680 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.750449Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3274752 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.750633Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3405824 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.750802Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3536896 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.751053Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3667968 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.751245Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3799040 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.751407Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3930112 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.751564Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4061184 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.751837Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4192256 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.752018Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4323328 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.752178Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4454400 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.752335Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4585472 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.752496Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4716544 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.752653Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4847616 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.752811Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4978688 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.752978Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5109760 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.753141Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5240832 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.753298Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5371904 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.753455Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5502976 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.753614Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5634048 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.753771Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5765120 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.753936Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5896192 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.754094Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6027264 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.754252Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6158336 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.754409Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6289408 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.754566Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6420480 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.754723Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6551552 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.754886Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6682624 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.755046Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6813696 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.755206Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6944768 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.755363Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7075840 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.755522Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7206912 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.755678Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7337984 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.755835Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7469056 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.755998Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7600128 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.756156Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7731200 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.756313Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7862272 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.756469Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7993344 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.756625Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8124416 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.756781Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8255488 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.756977Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 120844 bytes from "hidden/Resource3D/Base.xpr" @ 8386560 (handle=0x1318) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.760094Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 51200 bytes from "dat/GP_TITLE.p00" @ 0 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.763156Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002cdba806e.tmp" err=File not found: cache:/87719002cdba806e.tmp handle=0x1498 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.763251Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x149c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.763984Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x14a0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.764016Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x14a4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.764058Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x14a8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.764196Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x14ac [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.764208Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x14b0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.764218Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002cdba806e.tmp" err=File not found: cache:/87719002cdba806e.tmp handle=0x14b4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.764668Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 2048 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.765141Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 51200 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.767272Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m File opened: path="hidden/Resource3D/Common.xpr" size=593932 handle=0x14c0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.770923Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 102400 bytes from "dat/GP_TITLE.p00" @ 182272 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.779289Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002cec0a96e.tmp" err=File not found: cache:/87719002cec0a96e.tmp handle=0x14cc [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.779327Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x14d0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.779697Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x14d4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.779724Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x14d8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.779764Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x14dc [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.779906Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x14e0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.779918Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x14e4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.779928Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002cec0a96e.tmp" err=File not found: cache:/87719002cec0a96e.tmp handle=0x14e8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.780285Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 507904 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.785085Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 638976 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.785251Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 770048 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.785419Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 901120 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.785582Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1032192 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.785747Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1163264 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.785918Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1294336 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.786081Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1425408 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.786241Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1556480 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.786401Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1687552 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.786563Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1818624 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.786724Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1949696 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.786892Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2080768 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.787056Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2211840 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.787217Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2342912 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.787378Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2473984 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.787548Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2605056 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.787712Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2736128 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.787882Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2867200 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.788045Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2998272 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.788191Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 100352 bytes from "dat/GP_TITLE.p00" @ 3129344 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.883835Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002a60fcb85.tmp" err=File not found: cache:/87719002a60fcb85.tmp handle=0x1540 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.883918Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1544 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.884655Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1548 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.884702Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x154c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.884773Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1550 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.885004Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1554 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.885029Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002/a" err=File not found: cache:/87719002/a handle=0x1558 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.885056Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002a60fcb85.tmp" err=File not found: cache:/87719002a60fcb85.tmp handle=0x155c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.885738Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 38912 bytes from "dat/GP_TITLE.p00" @ 468992 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.887652Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002285d8849.tmp" err=File not found: cache:/87719002285d8849.tmp handle=0x1564 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.887690Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1568 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.888130Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x156c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.888169Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1570 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.888213Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1574 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.888349Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1578 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.888360Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002/2" err=File not found: cache:/87719002/2 handle=0x157c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.888370Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002285d8849.tmp" err=File not found: cache:/87719002285d8849.tmp handle=0x1580 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.888800Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3229696 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.893692Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3360768 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.893875Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3491840 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.894041Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3622912 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.894205Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3753984 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.894369Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3885056 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.894533Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4016128 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.894696Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4147200 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.894865Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4278272 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.895027Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4409344 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.895174Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 88064 bytes from "dat/GP_TITLE.p00" @ 4540416 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.944465Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002a715f485.tmp" err=File not found: cache:/87719002a715f485.tmp handle=0x15b0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.944523Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x15b4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.945001Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x15b8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.945031Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x15bc [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.945083Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x15c0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.945220Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x15c4 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.945232Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002/a" err=File not found: cache:/87719002/a handle=0x15c8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.945242Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002a715f485.tmp" err=File not found: cache:/87719002a715f485.tmp handle=0x15cc [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.945735Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_rs[0m[2m:[0m HW thread returned to LR sentinel — marking exited [3mhw_id[0m[2m=[0m1 [3mtid[0m[2m=[0mSome(12) [3mis_main[0m[2m=[0mfalse [3mcycle[0m[2m=[0m18593977 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.945963Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 116736 bytes from "dat/GP_TITLE.p00" @ 284672 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.946003Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=16 on hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.946009Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=16 handle=0x15dc hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.948182Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=17 on hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.948191Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=17 handle=0x15ec hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.952797Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002cf2a8ccd.tmp" err=File not found: cache:/87719002cf2a8ccd.tmp handle=0x15f8 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.952873Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x15fc [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.954220Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1600 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.954291Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1604 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.954415Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=18 on hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.954423Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=18 handle=0x1614 hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.954461Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1618 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.954525Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=19 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.954531Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=19 handle=0x1624 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.954598Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_cpu::scheduler[0m[2m:[0m spawn: tid=20 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.954605Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m ExCreateThread: tid=20 handle=0x162c hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.954963Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1630 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.954982Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x1634 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.955000Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002cf2a8ccd.tmp" err=File not found: cache:/87719002cf2a8ccd.tmp handle=0x1638 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:31.956247Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 67584 bytes from "dat/GP_TITLE.p00" @ 401408 (handle=0x1358) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.856655Z[0m [32m INFO[0m [2mxenia_gpu::gpu_system[0m[2m:[0m gpu: XE_SWAP (kernel-direct) [3mframe[0m[2m=[0m2 [3mfb[0m[2m=[0m0x0b1d8000 [3mwidth[0m[2m=[0m1280 [3mheight[0m[2m=[0m720
|
||||
[2m2026-05-07T18:37:32.861772Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/8771900201a2db9c.tmp" err=File not found: cache:/8771900201a2db9c.tmp handle=0x1640 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.861874Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1644 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.863762Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1648 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.863834Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x164c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.863995Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1650 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.864500Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1654 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.864519Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/87719002/0" err=File not found: cache:/87719002/0 handle=0x1658 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.864537Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m Synthesized empty file for missing path: path="cache:/8771900201a2db9c.tmp" err=File not found: cache:/8771900201a2db9c.tmp handle=0x165c [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.866015Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.874116Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 131072 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.874504Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 262144 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.874896Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 393216 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.875288Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 524288 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.875686Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 655360 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.876076Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 786432 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.876467Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 917504 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.876854Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1048576 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.877256Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1179648 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.877645Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1310720 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.878044Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1441792 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.878457Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1572864 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.878877Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1703936 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.879274Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1835008 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.879661Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1966080 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.880079Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2097152 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.880463Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2228224 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.880841Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2359296 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.881251Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2490368 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.881640Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2621440 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.882036Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2752512 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.882462Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2883584 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.882845Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3014656 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.883245Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3145728 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.883629Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3276800 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.884032Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3407872 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.884415Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3538944 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.884804Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3670016 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.885238Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3801088 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.885623Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3932160 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.886009Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4063232 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.886393Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4194304 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.886776Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4325376 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.887176Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4456448 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.887562Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4587520 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.887960Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4718592 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.888345Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4849664 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.888721Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4980736 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.889119Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5111808 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.889502Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5242880 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.889887Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5373952 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.890273Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5505024 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.890838Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5636096 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.891510Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5767168 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.892004Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5898240 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.892398Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6029312 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.892781Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6160384 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.893173Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6291456 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.893634Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 38912 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6422528 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.896736Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6459392 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.904928Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6590464 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.905323Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6721536 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.905709Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6852608 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.906097Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6983680 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.906478Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7114752 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.906860Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7245824 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.907247Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7376896 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.907633Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7507968 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.908018Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7639040 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.908398Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7770112 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.908779Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7901184 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.909161Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8032256 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.909546Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8163328 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.909931Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8294400 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.910316Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8425472 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.910704Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8556544 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.911105Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8687616 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.911835Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8818688 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.912242Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8949760 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.912628Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9080832 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.913015Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9211904 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.913398Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9342976 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.913778Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9474048 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.914162Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9605120 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.914550Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9736192 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.914944Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9867264 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.915325Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9998336 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.915705Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10129408 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.916087Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10260480 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.916468Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10391552 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.916848Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10522624 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.917235Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10653696 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.917614Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10784768 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.917997Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10915840 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.918385Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11046912 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.918767Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11177984 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.919153Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11309056 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.919541Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11440128 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.919928Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11571200 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.920311Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11702272 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.920693Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11833344 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.921082Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11964416 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.921456Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12095488 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.921837Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12226560 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.922220Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12357632 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.922600Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12488704 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.922980Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12619776 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.923359Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12750848 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.923738Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12881920 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.924129Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13012992 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.924513Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13144064 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.924899Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13275136 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.925281Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13406208 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.925700Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13537280 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.926091Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13668352 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.926473Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13799424 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.926853Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13930496 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.927238Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14061568 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.927627Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14192640 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.928016Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14323712 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.928396Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14454784 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.928775Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14585856 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.929162Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14716928 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.929554Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14848000 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.929956Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14979072 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.930365Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15110144 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.930765Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15241216 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.931158Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15372288 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.931545Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15503360 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.931939Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15634432 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.932328Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15765504 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.932734Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15896576 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.933123Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16027648 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.933506Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16158720 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.933895Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16289792 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.934288Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16420864 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.934672Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16551936 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.935055Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16683008 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.935436Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16814080 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.935819Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16945152 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.936202Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17076224 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.936583Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17207296 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.936973Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17338368 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.937350Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17469440 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.937728Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17600512 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.938144Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17731584 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.938530Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17862656 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.938960Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17993728 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.939345Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18124800 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.939725Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18255872 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.940268Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18386944 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.940656Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18518016 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.941053Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18649088 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.941436Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18780160 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.941821Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18911232 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.942211Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19042304 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.942594Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19173376 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.942983Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19304448 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.943365Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19435520 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.943752Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19566592 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.944144Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19697664 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.944527Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19828736 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.944914Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19959808 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.945406Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20090880 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.945795Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20221952 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.946181Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20353024 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.946561Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20484096 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.947010Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 38924 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20615168 (handle=0x135c) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:32.951104Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtReadFile: 2048 bytes from "hidden/Resource3D/Common.xpr" @ 0 (handle=0x14c0) [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:33.991386Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_rs[0m[2m:[0m reached max instruction count [3mlimit[0m[2m=[0m50000000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(50000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:37:33.993106Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m in-memory trace log [3mentries[0m[2m=[0m0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:37:33.993643Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m exec complete [3mwall_ms[0m[2m=[0m3814 [3minstructions[0m[2m=[0m50000011 [3mimport_calls[0m[2m=[0m407247 [3munimplemented[0m[2m=[0m0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:37:34.001938Z[0m [32m INFO[0m [2mxenia_rs::observability[0m[2m:[0m metrics summary:
|
||||
histogram xex.load_image_ms = count=1 sum=67.000 min=67.000 max=67.000 mean=67.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} = 79290
|
||||
counter kernel.calls{name=RtlLeaveCriticalSection} = 79289
|
||||
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} = 347
|
||||
counter kernel.calls{name=NtClose} = 548
|
||||
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} = 35
|
||||
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} = 94813
|
||||
counter kernel.calls{name=NtCreateSemaphore} = 10
|
||||
counter kernel.calls{name=NtQueryDirectoryFile} = 1
|
||||
counter kernel.calls{name=NtQueryInformationFile} = 380
|
||||
counter kernel.calls{name=NtQueryFullAttributesFile} = 16
|
||||
counter kernel.calls{name=NtWaitForMultipleObjectsEx} = 55671
|
||||
counter kernel.calls{name=NtDuplicateObject} = 36
|
||||
counter kernel.calls{name=NtReleaseSemaphore} = 393
|
||||
counter kernel.calls{name=NtSetInformationFile} = 77
|
||||
counter kernel.calls{name=NtSetEvent} = 334
|
||||
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} = 295
|
||||
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} = 94757
|
||||
counter kernel.calls{name=XamUserGetSigninState} = 2
|
||||
counter kernel.calls{name=XamUserGetXUID} = 1
|
||||
counter kernel.calls{name=XamUserReadProfileSettings} = 2
|
||||
35
audit-runs/audit-023-canary-diff/ours-pdata.err
Normal file
35
audit-runs/audit-023-canary-diff/ours-pdata.err
Normal file
@@ -0,0 +1,35 @@
|
||||
Finished `release` profile [optimized] target(s) in 0.22s
|
||||
Running `target/release/xenia-rs exec sylpheed.iso --halt-on-deadlock --dump-addr=0x82124000,0x82124100,0x82124800,0x82124900 -n 5000000`
|
||||
[2m2026-05-07T18:39:11.760982Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mload_xex_data[0m: [2mxenia_rs[0m[2m:[0m detected disc image, extracting default.xex [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:39:11.762521Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m XEX file format [3mcompression[0m[2m=[0m"normal (LZX)" [3mencryption[0m[2m=[0m"normal (AES)" [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:39:11.762542Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m loading XEX [3mentry[0m[2m=[0m0x824ab748 [3mbase[0m[2m=[0m0x82000000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:39:11.832452Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mload_image[0m:[1mload_normal_compressed[0m: [2mxenia_xex::loader[0m[2m:[0m LZX decompressed: 3428942 -> 9568256 bytes [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mbytes[0m[2m=[0m3497984[0m [2m[3mbytes_in[0m[2m=[0m3485696[0m
|
||||
[2m2026-05-07T18:39:11.832945Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mload_image[0m: [2mxenia_xex::loader[0m[2m:[0m image loaded [3mbytes_in[0m[2m=[0m3485696 [3mbytes_out[0m[2m=[0m9568256 [3mratio[0m[2m=[0m2.745005875440658 [3melapsed_ms[0m[2m=[0m70.0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mbytes[0m[2m=[0m3497984[0m
|
||||
[2m2026-05-07T18:39:11.837243Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m import thunks mapped [3mthunks[0m[2m=[0m194 [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:39:11.837380Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m dump addresses armed: 4 (0x82124000, 0x82124100, 0x82124800, 0x82124900) [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:39:11.837542Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m starting execution [3mlimit[0m[2m=[0m5000000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:39:11.837550Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m gpu: threaded backend — spawning worker thread [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:39:11.842149Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtAllocateVirtualMemory: base=0x40005000 size=0x100000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(5000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:39:11.842177Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m NtAllocateVirtualMemory: base=0x40005000 size=0x10000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(5000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:39:11.842250Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_kernel::exports[0m[2m:[0m XexCheckExecutablePrivilege [3mpriv[0m[2m=[0m10 [3mflags[0m[2m=[0m0x00000400 [3mresult[0m[2m=[0m1 [3mlr[0m[2m=[0m0x824ab598 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(5000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:39:12.042842Z[0m [32m INFO[0m [1mcmd_exec[0m:[1mrun_execution[0m: [2mxenia_rs[0m[2m:[0m reached max instruction count [3mlimit[0m[2m=[0m5000000 [2m[3mpath[0m[2m=[0msylpheed.iso[0m [2m[3mmax[0m[2m=[0mSome(5000000) [3mips[0m[2m=[0mNone[0m
|
||||
[2m2026-05-07T18:39:12.043798Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m in-memory trace log [3mentries[0m[2m=[0m0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:39:12.044037Z[0m [32m INFO[0m [1mcmd_exec[0m: [2mxenia_rs[0m[2m:[0m exec complete [3mwall_ms[0m[2m=[0m283 [3minstructions[0m[2m=[0m5000004 [3mimport_calls[0m[2m=[0m31016 [3munimplemented[0m[2m=[0m0 [2m[3mpath[0m[2m=[0msylpheed.iso[0m
|
||||
[2m2026-05-07T18:39:12.048628Z[0m [32m INFO[0m [2mxenia_rs::observability[0m[2m:[0m metrics summary:
|
||||
histogram xex.load_image_ms = count=1 sum=70.000 min=70.000 max=70.000 mean=70.000
|
||||
counter xex.bytes_in = 3485696
|
||||
counter xex.bytes_out = 9568256
|
||||
counter kernel.calls{name=RtlImageXexHeaderField} = 1
|
||||
counter kernel.calls{name=NtAllocateVirtualMemory} = 2
|
||||
counter kernel.calls{name=KeGetCurrentProcessType} = 1
|
||||
counter kernel.calls{name=RtlInitializeCriticalSection} = 26
|
||||
counter kernel.calls{name=RtlEnterCriticalSection} = 15464
|
||||
counter kernel.calls{name=RtlLeaveCriticalSection} = 15463
|
||||
counter kernel.calls{name=XexCheckExecutablePrivilege} = 1
|
||||
counter kernel.calls{name=XGetAVPack} = 1
|
||||
counter kernel.calls{name=KeTlsAlloc} = 2
|
||||
counter kernel.calls{name=KeTlsSetValue} = 2
|
||||
counter kernel.calls{name=KeQuerySystemTime} = 1
|
||||
counter kernel.calls{name=RtlInitializeCriticalSectionAndSpinCount} = 48
|
||||
counter kernel.calls{name=MmAllocatePhysicalMemoryEx} = 3
|
||||
counter kernel.calls{name=NtCreateEvent} = 1
|
||||
142
audit-runs/audit-023-canary-diff/parse_dump.py
Normal file
142
audit-runs/audit-023-canary-diff/parse_dump.py
Normal file
@@ -0,0 +1,142 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
Parse canary's Memory::Save dump.
|
||||
|
||||
Format (canary memory.cc Memory::Save -> heaps_.<heap>.Save iterates pages):
|
||||
for each heap in [v00000000, v40000000, v80000000, v90000000, physical]:
|
||||
for each page (heap_size / page_size pages):
|
||||
uint64_t qword (LE host-endian)
|
||||
if state != 0 and (state bits) & kMemoryAllocationCommit (=2):
|
||||
page_size raw bytes (host-endian, but guest PPC big-endian written through guest stores)
|
||||
|
||||
PageEntry bitfield (LE qword):
|
||||
base_address : 20 (bits 0-19)
|
||||
region_page_count : 20 (bits 20-39)
|
||||
allocation_protect : 4 (bits 40-43)
|
||||
current_protect : 4 (bits 44-47)
|
||||
state : 2 (bits 48-49) -- 0x1 reserve, 0x2 commit
|
||||
reserved : 14
|
||||
"""
|
||||
|
||||
import struct
|
||||
import sys
|
||||
|
||||
HEAPS = [
|
||||
("v00000000", 0x00000000, 0x40000000, 4096),
|
||||
("v40000000", 0x40000000, 0x3F000000, 65536),
|
||||
("v80000000", 0x80000000, 0x10000000, 65536),
|
||||
("v90000000", 0x90000000, 0x10000000, 4096),
|
||||
("physical", 0x00000000, 0x20000000, 4096), # logical name, separate space
|
||||
]
|
||||
|
||||
K_COMMIT = 0x2
|
||||
|
||||
def parse(path):
|
||||
"""Walk the dump; yield (heap_name, page_idx, qword, page_offset_in_file_or_None)."""
|
||||
with open(path, "rb") as f:
|
||||
data = f.read()
|
||||
print(f"[i] dump size: {len(data)} bytes ({len(data)/1024/1024:.1f} MiB)")
|
||||
|
||||
cursor = 0
|
||||
heap_index = {}
|
||||
for name, base, size, page_size in HEAPS:
|
||||
page_count = size // page_size
|
||||
print(f"[i] heap {name} base={base:#010x} size={size:#x} pages={page_count} ps={page_size}")
|
||||
heap_meta = {
|
||||
"base": base, "size": size, "page_size": page_size,
|
||||
"page_count": page_count,
|
||||
"pages": {}, # page_idx -> (qword, page_data_offset_or_None)
|
||||
"start_offset": cursor,
|
||||
}
|
||||
committed = 0
|
||||
for i in range(page_count):
|
||||
if cursor + 8 > len(data):
|
||||
print(f"[!] truncated reading page header heap={name} page={i} cursor={cursor}")
|
||||
heap_index[name] = heap_meta
|
||||
return heap_index, data
|
||||
qword = struct.unpack_from("<Q", data, cursor)[0]
|
||||
cursor += 8
|
||||
# Empirically: gcc/clang lays out PageEntry bitfields with
|
||||
# state at bits 60-61 (not 48-49 as a naive declaration-order
|
||||
# mapping would predict). Determined by walking the dump and
|
||||
# confirming cursor lands exactly at file size.
|
||||
state = (qword >> 60) & 0x3
|
||||
if state != 0 and (state & K_COMMIT):
|
||||
page_off = cursor
|
||||
cursor += page_size
|
||||
committed += 1
|
||||
heap_meta["pages"][i] = (qword, page_off)
|
||||
if cursor > len(data):
|
||||
print(f"[!] truncated reading page bytes heap={name} page={i}")
|
||||
heap_index[name] = heap_meta
|
||||
return heap_index, data
|
||||
else:
|
||||
heap_meta["pages"][i] = (qword, None)
|
||||
heap_meta["end_offset"] = cursor
|
||||
heap_meta["committed_pages"] = committed
|
||||
heap_index[name] = heap_meta
|
||||
print(f"[i] committed_pages={committed} cursor_after={cursor:#x}")
|
||||
print(f"[i] total parsed bytes: {cursor:#x}; remaining tail: {len(data)-cursor}")
|
||||
return heap_index, data
|
||||
|
||||
def read_addr(heap_index, data, guest_addr, length):
|
||||
"""Read length bytes starting at guest_addr from the canary memory dump.
|
||||
|
||||
Picks the right heap by base/size."""
|
||||
for name in ("v00000000", "v40000000", "v80000000", "v90000000"):
|
||||
meta = heap_index[name]
|
||||
if meta["base"] <= guest_addr < meta["base"] + meta["size"]:
|
||||
page_size = meta["page_size"]
|
||||
rel = guest_addr - meta["base"]
|
||||
page_idx = rel // page_size
|
||||
page_off_in = rel % page_size
|
||||
qword, page_off_in_file = meta["pages"][page_idx]
|
||||
if page_off_in_file is None:
|
||||
return None, name, page_idx, qword, "uncommitted"
|
||||
# collect bytes spanning multiple pages if needed
|
||||
out = bytearray()
|
||||
remaining = length
|
||||
while remaining > 0:
|
||||
qword2, off2 = meta["pages"][page_idx]
|
||||
if off2 is None:
|
||||
return None, name, page_idx, qword2, "uncommitted (mid-read)"
|
||||
in_page_avail = page_size - page_off_in
|
||||
take = min(remaining, in_page_avail)
|
||||
out.extend(data[off2 + page_off_in : off2 + page_off_in + take])
|
||||
remaining -= take
|
||||
page_idx += 1
|
||||
page_off_in = 0
|
||||
return bytes(out), name, None, qword, "committed"
|
||||
return None, None, None, None, "no heap"
|
||||
|
||||
def main():
|
||||
if len(sys.argv) < 2:
|
||||
print("usage: parse_dump.py <dump_path> [addr1[,addr2,...]] [length]")
|
||||
sys.exit(1)
|
||||
path = sys.argv[1]
|
||||
addr_args = sys.argv[2] if len(sys.argv) > 2 else "0x828F4070"
|
||||
length = int(sys.argv[3], 0) if len(sys.argv) > 3 else 0x100
|
||||
addrs = [int(a, 0) for a in addr_args.split(",")]
|
||||
|
||||
heap_index, data = parse(path)
|
||||
print()
|
||||
for addr in addrs:
|
||||
res, heap_name, page_idx, qword, status = read_addr(heap_index, data, addr, length)
|
||||
print(f"=== addr {addr:#010x} (heap={heap_name}) status={status} ===")
|
||||
if res is None:
|
||||
print(f" qword={qword:#x} page_idx={page_idx}")
|
||||
continue
|
||||
# Pretty-print: 16 bytes per row, big-endian word interpretation
|
||||
for i in range(0, len(res), 16):
|
||||
row = res[i:i+16]
|
||||
hexpart = " ".join(f"{b:02x}" for b in row)
|
||||
words = []
|
||||
for w in range(0, len(row), 4):
|
||||
if w+4 <= len(row):
|
||||
val = struct.unpack(">I", row[w:w+4])[0]
|
||||
words.append(f"{val:08x}")
|
||||
print(f" +{i:04x}: {hexpart:<48} | {' '.join(words)}")
|
||||
print()
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user